function PopWin(URL)
{
	window.open(URL,"","toolbar=no,menubar=no,location=no,resizable=yes,scrollbars=yes,width=655,height=520");
}

function PopWinEx(w,h,u)
{
	
	p="width="+w+",height="+h+",toolbar=no,directories=no,status=no,scrollbars=auto,resizable=no,menubar=no";
	hWnd=window.open(u,"Hwnd",p);
	hWnd.focus();
}
