function OpenNewWindow(cPicture,nWidth,nHeight,nBorder)
  {
  NewWindow=window.open("","NewOne","HEIGHT="+nHeight+",WIDTH="+nWidth+",scrollbars=no,resizable=no,top=0,left=0");
  NewWindow.document.write ("<HTML><HEAD><TITLE>Astronomy</TITLE></HEAD>");
  NewWindow.document.write ("<BODY BGCOLOR='#ffffff' leftmargin='0' topmargin='0' marginwidth='0' marginheight='0'>");	
  NewWindow.document.write ("<a href='javascript:self.close()'>");
  NewWindow.document.write ("<IMG alt='Click to close this popup window' border=0 src=");
  NewWindow.document.write (cPicture);
  NewWindow.document.write (">");
  NewWindow.document.write ("</a>");
  NewWindow.document.write ("</P>");
  NewWindow.document.write ("</BODY></HTML>");
  NewWindow.document.close();
  return false;
  }