// Beging center window functions
function windowOne(url)	{
    h=500;
    w=300;
    nameW='windowOne'
	x4 = screen.width/2 - (w/2);
	y4 = screen.height/2 - (h/2);
	window.open(url, nameW, 'height='+h+',width='+w+',scrollbars=1,resizable=0,menubar=0,toolbar=0,status=0,location=0,directories=0,left=' + x4 + ',top=' + y4 + '');
}
//-->
