function openImageWin(image,image_width,image_height,title)
          {
                       var height=0
                    height=screen.height-70;
                    if (height<image_height){image_height=height;}

                    myImageWin=window.open("", "displayWindow","width="+image_width+",height="+image_height+",status=no,toolbar=no,menubar=no,scrollbars=no,screenX=10,screenY=10,left=10,top=10,statusbar=yes,dependent=yes,resizable=no,fullscreen=no,titlebar=no");
                    myImageWin.document.open();
                    myImageWin.document.write("<title>"+title+"</title><body text=#000000 leftmargin=0 topmargin=0 marginwidth=0 marginheight=0><img border=0 src='"+image+"' align=middle></body>");
                    myImageWin.document.close();
          }







