// GLOBAL - Open Window
var newwin=null;

function pop(url,name,w,h) {    
	var Width;
	var Height;
	Width = (window.screen.width/2) - (w/2);
	Height = (window.screen.height/2) - (h/2);
	newwin=window.open(url,name,'width='+w+',height='+h+',left='+Width+',top='+Height+',screenX='+Width+',screenY='+Height+',toolbar=no,location=no,status=no,scrollbars=yes,resizable=yes');
	newwin.focus();
}
function modal(url,name,w,h) {    
	var Width;
	var Height;
	Width = (window.screen.width/2) - (w/2);
	Height = (window.screen.height/2) - (h/2);
	newwin=window.open(url,name,'width='+w+',height='+h+',left='+Width+',top='+Height+',screenX='+Width+',screenY='+Height+',toolbar=no,location=no,status=no,scrollbars=no,resizable=no');
	newwin.focus();
}
