
var elems = document.getElementsByTagName("select");
for (i = 0; i < elems.length; i++) {
 elems[i].style.visibility = "hidden";
}

function openwin(src){
    var i = new Image(); 
    i.onload = function() {
        var pop_win = window.open(
                          "",
                          "_blank",
                          "width="+i.width+",height="+i.height+",scrollbars=no,resizable=yes"
                      );
            pop_win.window.document.open();
            pop_win.window.document.write(
             '<html>'
            +'<head><title>'+i.alt+'</title></head>'
            +'<body style="margin:0;padding:0;border:0;">'
            +'<img src="'+i.src+'" alt="" />'
            +'</body>'
            +'</html>'
            );
            pop_win.window.document.close();
        i.onload = function(){};
    }
    i.src = src;
}
