function OpenNewWindow(cPicture,nWidth,nHeight,cMessage,nBorder)
{
  NewWindow=window.open("","NewOne","HEIGHT="+nHeight+",WIDTH="+nWidth+",scrollbars=no,resizable=no,top=100,left=100");
  NewWindow.document.write ("<html><head><title>Chaunigan Lake");
  NewWindow.document.write ("</title></head>");
  NewWindow.document.write ("<body bgcolor='#660000'>");
  NewWindow.document.write ("<center>");
  NewWindow.document.write ("<img src=");
  NewWindow.document.write (cPicture);
  NewWindow.document.write (">");
  NewWindow.document.write ("</center>");
  NewWindow.document.write ("<center><form><input type='button' value='Close This Window' onClick='self.close()'>");
  NewWindow.document.write ("</form></center></body></html>");
  NewWindow.document.close();
  return false;
}

