<!--hide script from old browsers
function noteWindow(label,bcol,tcol) {
  var label,bcol,tcol
  pictWindow = window.open('', 'newWin', 'scrollbars=yes,resizable=yes,width=400,height=400')
  pictWindow.document.write ("<HTML><HEAD><TITLE>Note Window</TITLE>")
  pictWindow.document.write ("<LINK REL='stylesheet' TYPE='text/css' HREF='../cedar.css'></HEAD>")
  pictWindow.document.write ("<BODY BGCOLOR='"+bcol+"' TEXT='"+tcol+"' LINK='#000000'>")
  pictWindow.document.write ("<P CLASS='indent'>"+label+"</P>")
  pictWindow.document.write ("<B><A HREF='javascript:self.window.close()'>Close Window</A></B></CENTER><P>")
  pictWindow.document.write ("</BODY></HTML>")
}
//end hiding contents-->


