//<!-- 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;

// Margins for Xoom
document.body.style.marginTop=5;
document.body.style.marginLeft=5;

document.body.style.marginBottom=5;
document.body.style.marginRight=5;


// To Print
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);
  };
};

// This should be done inside the various menus and area to remove
RemoveToPrint('Logo');
RemoveToPrint('MenuTopDiv');
RemoveToPrint('MenuDiv');


