

<!--

function openWindow(url,windowname,width,height) {
	var winl = (screen.width - width) / 2;
	var wint = (screen.height - height) / 2;
	winStats='toolbar=no,location=no,directories=no,menubar=no,'
	winStats+='scrollbars=no,width='+width+',height='+height+',resizable=no,'
	winStats+='top='+wint+',left='+winl
	floater=window.open(url,windowname,winStats);    
	floater.focus();
}

function openScroll(url,windowname,width,height) {
	var winl = (screen.width - width) / 2;
	var wint = (screen.height - height) / 2;
	winStats='toolbar=no,location=no,directories=no,menubar=no,'
	winStats+='scrollbars=yes,width='+width+',height='+height+',resizable=no,'
	winStats+='top='+wint+',left='+winl
	floater=window.open(url,windowname,winStats);    
	floater.focus();
}

//-->
