// JavaScript Document
<!--
document.write("<link rel='stylesheet' type='text/css' href='styles/print.css' media='print' />");
// Following code is for hiding menu item
function disappear(obj) {
 if (obj.style.display == "none") {
  obj.style.display = "";
  link1.style.display = "";
  link2.style.display = "none";
 }
 else {
  obj.style.display = "none";
  link1.style.display = "none";
  link2.style.display = "";
  }
}
// window opener that opens image in popup.htm, which resizes to image size
function PopupPic(sPicURL) {
     window.open( "popup.htm?"+sPicURL, "newWin", "HEIGHT=200,WIDTH=200");
} 
// Browser Detection & CSS command preventing the "Top" tab displaying in IE cos it's a crap browser
if (navigator.appName == "Microsoft Internet Explorer") {
document.write('<style type="text/css">');
document.write('<!--');
document.write('#skipTo {display:none;}');
document.write('-->');
document.write('</style>');
}
// -->
