// JScript File

var fontMin=10;
var fontMax=36;
function increaseFontSize() {
   var p = document.getElementsByTagName('p');
   for(i=0;i<p.length;i++) {
      if(p[i].style.fontSize) {
         var s = parseInt(p[i].style.fontSize.replace("px",""));
      } else {
         var s = 14;
      }
      if(s!=fontMax) {
         s += 2;
      }
      p[i].style.fontSize = s+"px"
   }
}
function decreaseFontSize() {
   var p = document.getElementsByTagName('p');
   for(i=0;i<p.length;i++) {
      if(p[i].style.fontSize) {
         var s = parseInt(p[i].style.fontSize.replace("px",""));
      } else {
         var s = 12;
      }
      if(s!=fontMin) {
         s -= 2;
      }
      p[i].style.fontSize = s+"px"
   }   
}

function printit() {
	var win = window.open('_print.aspx?url='+location.href,'print','left=15,top=15,width=675,height=570,scrollbars=yes,toolbar=yes,resizable=yes,menubar=yes');
	win.focus();
}



function popupin(){
    window.open ("workarea/login.aspx","mywindow","location=0,status=0,scrollbars=0,width=150,height=150"); 
}
function popupout(){
    window.open ("workarea/login.aspx?action=logout","mywindow","location=0,status=0,scrollbars=0,width=150,height=150"); 
}

