
// display colour calibration chart sub-window - called from index page.
function ColourChart() {
  navwin=window.open("","","menubar=no, toolbar=no, location=no, directories=no, status=no, scrollbars=yes, resizable=yes, top=0, left=0, width=680, height=680")
  //output HTML to remote window
  navwin.document.open()
  navwin.document.write("<html><head><title>RCP - Colour Calibration</title>")
  navwin.document.write("<link Rel='StyleSheet' href='style.css' type='text/css'>")
  navwin.document.write("</Head>")
  navwin.document.write("<Body bgcolor='black' Text='#dbdbdb' TopMargin=1>")
  navwin.document.write("<basefont size = '3'><Br>")
  navwin.document.write("<Center>")
  navwin.document.write("<Table Border=0 Width='95%' CellSpacing=1 CellPadding=4 Align=Center>")
  navwin.document.write("<Tr>")
  navwin.document.write(" <Td>")
  navwin.document.write("  <P Class='LrgText2'><Strong>Colour Calibration</Strong><Br><Br>")
  navwin.document.write("  <P Class='RegTextWht' Align=Left>&nbsp;&nbsp;&nbsp;Use the brightness and contrast")
  navwin.document.write("  controls on your monitor to adjust the display so that the colours look &quot;right&quot;")
  navwin.document.write("  to you.&nbsp; There should be even separation between the white and black squares,")
  navwin.document.write("  with the white looking very white, and the black looking very black.")
  navwin.document.write("  <Br>")
  navwin.document.write("</Tr>")
  navwin.document.write("</Table></Center>")
  navwin.document.write("<P Align=Center><Center><Img Border=0 Width=640 Height=480 Src='graphics/macbeth.gif'><Br></Center>")
  navwin.document.write("</body></html>")
  navwin.document.close()
  }


