/* 
	function PopupCenter genrate pop up in the 
	middle of the site while user going to leave the page.
	

*/


function PopupCenter()
{
	alert(window.URL);
var left = (screen.width/2)-(160);
var top = (screen.height/2)-(104);
var targetWin = window.open ('http://www.coloralchemy.com/web_templates/closePR.php', 'sdf' , 'toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=no, copyhistory=no, width=809, height=404, top='+top+', left='+left);
}
