<!--

function NewWindow(url,name,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=yes,'
	winStats+='top='+wint+',left='+winl
	floater=window.open(url,name,winStats)     
}

//-->