function popUp(URL,pWidth,pHeight,pScroll) {
GetPageName();
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=" + pScroll + ",location=0,statusbar=0,menubar=0,resizable=0,width="+ pWidth + ",height=" + pHeight + ",left = 0,top = 0');");
}
function GetPageName(){
	var sPath = window.parent.location.pathname;
	var sPage = sPath.substring(sPath.lastIndexOf('/') + 1);
	//alert(sPage);
}