<!--
function printWindow(url, toolbar){
 window.open(url, 'printWindow', 'menubar='+toolbar+', toolbar='+toolbar+', location=no, directories=no, status=no, scrollbars=yes, resizable=yes, copyhistory=no, width=700, height=400');
}

function popWindow(url, width, height, resizable, toolbar){
 window.open(url, 'popWindow', 'menubar='+toolbar+', toolbar='+toolbar+', location=no, directories=no, status=no, scrollbars=yes, resizable='+resizable+', copyhistory=no, width='+width+', height='+height);
}

function ScrollUp(){
	step=60;
	height= (document.layers?document.height:document.body.scrollHeight);
	if(navigator.appVersion.charAt(0) >=4) {
			while (height>0) {
   				window.scrollBy(0,-step);
   				height-= step;  
			} 	
      	}
	}

//-->
