function ShowUrl(url,nm,wdth,hght)
{
	myWin= open(url, nm, "width="+wdth+",height="+hght+",status=yes,toolbar=no,menubar=no,scrollbars=yes,resizable=yes");
	//myWin.document.close();  
	myWin.window.focus();
	return true;
}


function close_reload(time) {
	try{self.opener.location.reload();}catch(e){};
	//try{self.opener.location.href='index.php';}catch(e){};
	//window.opener.location.href('index.php');
	setTimeout(window.close, time);
}

