// 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 = "";
 }
 else {
  obj.style.display = "none";
  }
}
// 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");
} 
// -->