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

