<!-- Begin

// Add "New Item" highlight
function checknew(date) {
 var pic = "images/new.gif";
 expdate = new Date(date);
 curdate = new Date();
 if (expdate.getTime() > curdate.getTime())
 document.write("<img src=" + pic + ">");
}
// ------------------------------------------------------

// Inhibit Right Click
function right(e) {
 if (document.layers && (e.which == 2 || e.which == 3)) return false;
 else if (event.button == 2 || event.button == 3) {
  alert("Sorry, the right click function has been disabled on this page.");
  return false;
 }
  return true;
}

document.onmousedown=right;
document.onmouseup=right;
if (document.layers) window.captureEvents(Event.MOUSEDOWN);
if (document.layers) window.captureEvents(Event.MOUSEUP);
window.onmousedown=right;
window.onmouseup=right;
// ------------------------------------------------------

// Open Popup Window for Sample Pictures
// function popupSample(inum, surl) {
//   winprops = "width=555, height=372";
//   winname = "samplewindow" + inum;
//   swin = window.open(surl, winname, winprops);
// }
// -------------------------------------------------------

// Open Popup Text Box
// function ViewData(user,ValueShow,xoffset,yoffset) {
//   var mousex = window.event.x;
//   var mousey = window.event.y;
//   user.style.visibility = ValueShow;
//   user.style.left = mousex + xoffset;
//   user.style.top = mousey + yoffset;
// }
// --------------------------------------------------------

// Hide Status Bar Message
var statusmsg=""

function hidestatus(){
window.status=statusmsg
return true
}

// onMouseover="return hidestatus()"
// --------------------------------------------------------

function blockError(){return true;}
window.onerror = blockError;

// document.write("<img src=\"/cgi-bin/ax.pl?trans.gif&ref=");
// document.write(document.referrer);
// document.write("\" height=1 width=1 style=\"position: absolute; left: 0; top: 0\">");

// document.write("<img src=\"/cgi-bin/hitcounter.cgi\" width=1 height=1 style=\"position: absolute; left: 0; top: 0\">")

//  End -->
