function pop(width, height){
	width = (width && !isNaN(width))? width:null;
	height = (height && !isNaN(height))? height:null;
	var pURL = (arguments[2])? arguments[2]:null;
	var pName = (arguments[3])? arguments[3]:"generic";
	pURL = pURL.replace("%22%22", "%27%27");
	pURL = pURL.replace("\"\"", "%27%27");
	pURL = pURL.replace("'", "\\'");
	pURL = pURL.replace("\"", "%22");	
	//Pop only if width, height and URL embedded
	if (width && height && pURL){
	  var ieIncrement = ((navigator.appName+"").indexOf("Netscape") == -1)? 15:0;
	  eval(pName+"=window.open('"+ pURL +"','"+ pName +"','resizable=yes,scrollbars=yes,width="+ (width + ieIncrement) +",height="+ (height + ieIncrement) +",top=5,left=75')");
	  eval("window."+ pName +".focus()");
	}
}