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