
function pop2(psURL, psName, psWidth, psHeight){
	if (psName == "")   psName   = "_pop1";
	if (psWidth == "")  psWidth  = "400";
	if (psHeight == "") psHeight = "300";
	window.open(psURL,psName,'width='+psWidth+',height='+psHeight+',directories=no,location=no,menubar=no,scrollbars=no,status=yes,toolbar=no,resizable=yes');
}

function closeMe(){
	try{
		window.opener.focus();
	}
	catch(e){}
	self.close();
}
