function openNewPicture(cLocation,cPicture,cMessage)  {
if (cPicture) {
   document.write ("<TABLE border=0 width=600 align=center nowrap>");
   document.write ("<tr width=600>");
   document.write ("<td align=left align=center nowrap>");
   document.write ("<B><FONT SIZE=6 color='#008080'><P ALIGN=center><IMG SRC=");
   document.write (cLocation);
   document.write ("/");
   document.write (cPicture);
   document.write ("></P></B></td></tr></table><br>");
}
if (cMessage) {
   document.write ("<TABLE border=0 width=600 align=center nowrap>");
   document.write ("<tr width=600>");
   document.write ("<TD width=600 align=top align=justify>");
   document.write ("<FONT FACE=Arial SIZE=3 color=black><b>");
   if (cPicture) {
      document.write ("<P align=center>");
}
      else {
      document.write ("<P align=left>");
}
   document.write (cMessage);
   document.write ("</P></B></td></tr></table><br><br>");
}
      else {
   document.write ("<br><br>");
}
return false;
}




