<!--
// ************* FRAME BUSTER *************
// This automatically kills frames if someone has had the 
// audacity to open our site in their frames.

if (parent.frames.length > 0)
{
parent.location.href = location.href;
}

// ************* POPUP IMAGE WINDOW *************
// This is used for popping up a window with a large image
// when the user clicks a thumbnail.
function popupWindow(url,imgWidth,imgHeight) {
  window.open(url,'popupWindow','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=no,width=' + imgWidth + ',height=' + imgHeight + ',screenX=150,screenY=150,top=100,left=100')
}
//-->