function openSmallWindow(imagepass) {
//var img = new Image();
//img.src=imagepass;
//var img_w = img.width;
//var img_h = img.height;
var img_w = 474;
var img_h = 529;
obj_window = window.open("" ,1, "width=" + img_w + ",height=" + img_h + ",location=no,status=no,menubar=no,resizable=yes,toolbar=no");
obj_window.document.open();
obj_window.document.write("<html>\n");
obj_window.document.write("<head>\n");
obj_window.document.write("<title>Small Window</title>\n");
obj_window.document.write("</head>\n");
obj_window.document.write("<body>\n");
obj_window.document.write("<img src='" + imagepass + "'>\n");
obj_window.document.write("</body>\n");
obj_window.document.close();
}
