<!--

function loadmain(url) {
  parent.location.href= url;
}
function loadtwo(url1, url2) {
  parent.menu.location.href= url1;
  parent.main.location.href= url2;
}
function winExam(url1, pic, hd, ttl) {
  parent.main.location.href= url1;
  myWin= open("", "displayWindow","height=480,width=640,status=no,toolbar=no,menubar=no,scrollbars=yes");

  // open document for further output
  myWin.document.open();
  
  // create document
  myWin.document.write("<HTML>")
  myWin.document.write("<HEAD><TITLE>")
  myWin.document.write(ttl)
  myWin.document.write("</TITLE><HEAD>")
  myWin.document.write('<BODY BGCOLOR="FFFFFF">')
  myWin.document.write("<CENTER>")
  myWin.document.write('<H1><FONT COLOR="#0000FF" FACE="Arial Rounded MT Bold" SIZE=7>')
  myWin.document.write(hd)
  myWin.document.write("</FONT></H1>")
  myWin.document.write("<IMG SRC=");
  myWin.document.write(pic);
  myWin.document.write("><BR><P>")
  myWin.document.write("<FORM><INPUT TYPE=button value=Close onClick=window.close()></FORM>")
  myWin.document.write("</CENTER>")
  myWin.document.write("</BODY></HTML>")

  // close the document - (not the window!)
  myWin.document.close();  
}

function winExam2(pic, hd, ttl) {
  myWin= open("", "displayWindow","height=480,width=640,status=no,toolbar=no,menubar=no,scrollbars=yes");

  // open document for further output
  myWin.document.open();
  
  // create document
  myWin.document.write("<HTML>")
  myWin.document.write("<HEAD><TITLE>")
  myWin.document.write(ttl)
  myWin.document.write("</TITLE><HEAD>")
  myWin.document.write('<BODY BGCOLOR="FFFFFF">')
  myWin.document.write("<CENTER>")
  myWin.document.write('<H1><FONT COLOR="#0000FF" FACE="Arial Rounded MT Bold" SIZE=7>')
  myWin.document.write(hd)
  myWin.document.write("</FONT></H1>")
  myWin.document.write("<IMG SRC=");
  myWin.document.write(pic);
  myWin.document.write("><BR><P>")
  myWin.document.write("<FORM><INPUT TYPE=button value=Close onClick=window.close()></FORM>")
  myWin.document.write("</CENTER>")
  myWin.document.write("</BODY></HTML>")

  // close the document - (not the window!)
  myWin.document.close();  
}

function right(e) {
if (navigator.appName == 'Netscape' && 
(e.which == 3 || e.which == 2))
return false;
else if (navigator.appName == 'Microsoft Internet Explorer' && 
(event.button == 2 || event.button == 3)) {
alert("Sorry, you do not have permission to right click.");
return false;
}
return true;
}

document.onmousedown=right;
if (document.layers) window.captureEvents(Event.MOUSEDOWN);
window.onmousedown=right;

//-->