<!-- hide from old browsers
//---- You need to update your browser  ----//
// copyright HuntSpace 2004
// source=blank html : file=image filename : ih=image height : iw=image width
// coment=comments placed on page

function openWin(file,ih,iw,comment){
    var que=eval("'hs_image.php?display='+file+'|'+comment");
  newWin = window.open(que,"popup1",'"coolbar=no,toolbar=no,menubar=yes,scrollbars=yes,resizable=yes,height="+ih+",width="+iw+",top=10,left=0"');
  newWin.resizeTo(iw,ih);
  newWin.moveTo(10,10);
}
function imageRoll(status,pic){
    picOn = new Image;
    picOff = new Image;
  if(status=="on"){
    picOff="";
    picOn.src =  "images/" + pic + "-on.gif";
    document[pic].src=picOn.src;
  }else{
    picOn="";
    picOff.src =  "images/" + pic + ".gif";
    document[pic].src=picOff.src;
  }
  // <a href="next.htm" onMouseover="javascript:imageRoll('on','images/alt-on')"
  // onMouseout="javascript:imageRoll('off','images/alt')"><img src="images/alt.gif" 
  // width="100" height="50" border="0" name="arrow" alt="link to next page"></a>
}
// stop hiding -->
































