function popUp(strURL,strName,strType,strHeight,strWidth) {
var strOptions="";
if (strType=="lp") strOptions="menubar,location,height="+strHeight+",width="+strWidth;
newwindow=window.open(strURL, strName, strOptions);
if (window.focus) {newwindow.focus()}
	return false;

}


