function Pop(name, w, h){  

    var s1 = ('<HTML><HEAD><TITLE>AnriShop</TITLE></HEAD>' + '<BODY BGCOLOR="#EFF4EF" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" onBlur="self.close()">' + '<table width="100%" height="100%" border="0" cellpadding="0" cellspacing="0"><tr><td align="center" valign="middle"><IMG SRC="' + name + '" border="1">' + '</tr></table></body></html>');   

    w = w + 20;
    h = h + 20;
    
    var param = ("height=" + h + ",width=" + w + ",scrollbars=no,resizable=yes,left=50,top=50");

    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,"IS_pop","width="+w+",height="+h+",menubar=no,toolbar=no,status=yes,resizable=yes,scrollbars=no,");
	if ((!((navigator.appName == "Netscape")&&(ver==2))) && (!((navigator.appName == "Microsoft Internet Explorer")&&(ver<4)))){
          setTimeout("if (newWin) newWin.focus();",1000);
    }
}
