function ViewImage(itemname,itemid,itemdesc) { 
var win;

win = window.open("","imageviewer","width=410,height=355,menubar=no,toolbar=no,scrollbars=0");
win.document.open();
win.document.write("<html><head><title>"+itemname+"</title>");
win.document.write("</head><body bgcolor=#F2FBF6 leftmargin=0 topmargin=0 rightmargin=0 bottommargin=0 marginheight=0 marginwidth=0>");
win.document.write("<table border=0 cellspacing=0 cellpadding=0 width=100% height=100%>");
win.document.write("<tr><td valign=top align=center><font size=2 face=' trebuchet ms, trebuchet, tahoma, verdana, arial, helvetica' color='#000000'><b><a href='javascript:window.close()'><font size=1 color=#4F5B83>PLEASE CLICK HERE TO CLOSE WINDOW AND RETURN TO PAGE</font></a><br>");
win.document.write("<center><img src='images/facilites_images/"+itemid+".jpg' vspace=5 hspace=5><br>"+itemdesc+"</center>");
win.document.write("</font></td></tr></table></body></html>");
win.document.close();
}

