function i(imageURL,imageTitle,size){
// pop-up configuration
 var _resizable=0;
 var _status=0;
 var _scrollbars=0;
 var img = new Image;
 img.src=imageURL;
 var winl = "100";
 var wint = "100";
 
 if (size == "1") {
  var _h = "500";
  var _w = "375";
 }
 else {
  var _h = "375";
  var _w = "500";
 }
 
 // open window
 var _win=window.open("","","height="+_h+", width="+_w+", top ="+wint+", left = "+winl+", resizable="+_resizable+", status="+_status+", scrollbars="+_scrollbars);
 // write html content in new window
 _win.document.write("<html><head>\n<title>"+imageTitle+"</title>\n</head>\n");
 _win.document.write("<body style=\"margin:0px;\">\n");
 _win.document.write("<div align=\"center\"><img src=\""+imageURL+"\" alt=\""+imageTitle+"\" onClick=\"window.close();\"></div>\n");
 _win.document.write("</body>\n</html>");
 return false;
}