function Pop(name, w, h){  

    var s1 = ("<HTML><TITLE>Andrianer Porphyr</TITLE>" + 
    "<BODY onBlur='self.focus()' BGCOLOR='#ffffff' leftmargin='0' topmargin='0' marginwidth='0' marginheight='0'>" + 
    "<IMG SRC='" + name + "' border='1'>" + "<BR><CENTER>");   

    w = w;
    h = h;
    
    var param = ("height=" + h + ",width=" + w + ",scrollbars=no,resizable=no,left=100,top=100");

    popup = window.open("","popDialog",param)

    popup.document.write(s1)
    popup.document.close()
}


function PopItNew(theURL, w, h){
        ver = parseInt(navigator.appVersion.substring(0,1));       newWin=window.open(theURL,"ipix_pop","width="+w+",height="+h+",menubar=no,toolbar=no,status=no,resizable=no,scrollbars=no,");
	if ((!((navigator.appName == "Netscape")&&(ver==2))) && (!((navigator.appName == "Microsoft Internet Explorer")&&(ver<4)))){
          setTimeout("if (newWin) newWin.focus();",1000);
    }
}

