////////////////////////////////////////////////////////////////////////////////////////////////////
//	Popup (VariablexVariable)
//	Launches a popup window, centered in the screen.  Width and Height will be passed via javscript
////////////////////////////////////////////////////////////////////////////////////////////////////


function Popup(win){
	
	var myLeft = (screen.width-520)/2;
	var myTop = (screen.height-560)/2;
		
	newWindow = window.open(win,'Popup','toolbar=no,location=no,status=yes,scrollbars=yes,resizable=no,width=720,height=550,left='+myLeft+',top='+myTop);
	newWindow.focus();
}

////////////////////////////////////////////////////////////////////////////////////////////////////
