//<!-- Pages Data Set -->
// Data for the pages
// Nicola Zordan, Wednesday 21 February 2001

//document.bgColor=PagesBgColor;
document.bgColor=PagesMenuBgColor;
if (document.title=='') document.title=PagesTitle;
//document.text=PagesTextColor;
document.fgColor=PagesTextColor;

document.linkColor=PagesLinkColor;
document.alinkColor=PagesALinkColor;
document.vlinkColor=PagesVLinkColor;
document.body.style.fontFamily=PagesFont;

var ToRemoveToPrint=new Array();
function RemoveToPrint(div) {
  ToRemoveToPrint[ToRemoveToPrint.length]=div;
};

function ToPrint (message) {
  for (var i=0;i<ToRemoveToPrint.length;i++) {
    document.all[ToRemoveToPrint[i]].innerHTML='';
  };
/*
  if (message!=null && message!='') {
    alert(message);
  };
*/
  window.print();
  //window.location(document.URL);
  window.location=window.location;
};

// This should be done inside the various menus and area to remove
RemoveToPrint('Logo');
RemoveToPrint('MenuTopDiv');
RemoveToPrint('Menu');

// Gradient background
// style="filter:progid:DXImageTransform.Microsoft.Gradient(endColorstr='#C0CFE2', startColorstr='#FFFFFF', gradientType='0');" 
//var PageStyle="filter:progid:DXImageTransform.Microsoft.Gradient(endColorstr='#C0CFE2', startColorstr='#FFFFFF', gradientType='0');";
//document.getElementById('Page').style=PageStyle;

