function PopWin(strURL)
{
	if (strURL == "")
		window.open("about:blank");
	else
		window.open(strURL);
}