
// PS.com pop-up - params: url, width, height

function doThePopUp(theUrl, theWidth, theHeight){
	var width=theWidth;  var height=theHeight;
	if (width == null) {width=600;}
	if (height == null) {height=730;}
	  var from_top=20;  var from_left=20;  var toolbar='no';  var location='no';  var directories='no';  var status='no';  var menubar='no';  var scrollbars='yes';  var resizable='no';  var atts='width='+width+'show,height='+height+',top='+from_top+',screenY=';  atts+= from_top+',left='+from_left+',screenX='+from_left+',toolbar='+toolbar;  atts+=',location='+location+',directories='+directories+',status='+status;  atts+=',menubar='+menubar+',scrollbars='+scrollbars+',resizable='+resizable;  
	  popupWin=window.open(theUrl, "_blank", atts); 
	  if (window.focus) {
		  popupWin.focus()
		  }
}