// JavaScript Document
<!-- Set   doAlerts=true;   to shut on the alert when changing styles.  //-->
<!--
var doAlerts=false;
function changeSheets(whichSheet){
  if(document.styleSheets){
    var c = document.styleSheets.length;
    if (doAlerts) alert('Change to Style '+(whichSheet));
    for(var i=0;i<c;i++){
      if(i!=whichSheet){
        document.styleSheets[i].disabled=true;
      }else{
        document.styleSheets[i].disabled=false;
      }
    }
  }
}
//--><!-- --------------------------- # ------------------------------- //-->
<!-- ----------------------  FULL SCREEN FUNCTION  ---------------- //--><!-- 
    window.moveTo(-3,-3);
	window.resizeTo(screen.availWidth + 8 , screen.availHeight + 10);
//--><!-- --------------------------- # ------------------------------- //-->
<!-- -------------------------  PRINT FUNCTION  ------------------- //--><!-- 
function printout() 
{	
  window.print();
}
//--><!-- --------------------------- # ------------------------------- //-->


