// JavaScript Document Mahala Floral
// Displays the Larger Pic with the same CSS as the website

function imgClick(imgPath) {
   var myIFrameDoc=document;
   myIFrameDoc.open();
   myIFrameDoc.write("<html><head><title>Larger Picture</title><link href=CSS/maincss.css rel=stylesheet type=text/css></head><body bgcolor=#DDDDDD> <table border=4 align=center cellpadding=7 bordercolor=#336633><tr><td><table width=100% align=center><tr><td><img src='"+imgPath+"'></td></tr></table></td></tr></table></body></html>");
   myIFrameDoc.close();
   return false;
}
