function imagepop(img,w,h,alt,others){
    var prm="";
    others=""+others;
    if (others.search(/t/i) != -1) {
        prm += ",toolbar=yes";
    }
    if (others.search(/l/i) != -1) {
        prm += ",location=yes";
    }
    if (others.search(/s/i) != -1) {
        prm += ",status=yes";
    }
    if (others.search(/m/i) != -1) {
        prm += ",menubar=yes";
    }
    if (others.search(/b/i) != -1) {
        prm += ",scrollbars=yes";
    }
    if (others.search(/r/i) != -1) {
        prm += ",resizable=yes";
    }
    if (alt != null) {
    alt = "alt="+alt;
    }
    var win=window.open("",name,"directories=no,width="+w+",height="+h+prm);
    win.document.open("text/html", "replace");
    win.document.write('<html><head><title>noproblem</title></head>');
    win.document.write('<body marginwidth="0" marginheight="0" style="margin:0px;" bgcolor="#FFFFFF">')
    win.document.write('<a href="JavaScript:window.close();"><img src="'+img+'" '+alt+' border="0"></a></body></html>');
    win.document.close();
}