//function popUp(URL,PopWidth,PopHeight) {
//day = new Date();
//id = day.getTime();
//eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width="+PopWidth+",height="+PopHeight+",left =240,top=90');");
//}
//
//function PopUpdeal(URL)
//{
//	window.open(URL,'mywindow');
//}


var popp=0;
function popUp(URL)
{
	//alert(URL);
	if(popp)
	{
		if(!popp.closed)
		{
			popp.close();
		}
	}
	popp=open(URL,'','width=380,height=320,menubar=no,resizable=1,dependent=1,toolbar=no,top=90,left=240,scrollbars=1');
}