 function init()
 {
  if (!document.getElementById) return
  var imgOriginSrc;
  var imgTemp = new Array();
  var imgarr = document.getElementsByTagName('img');
  for (var i = 0; i < imgarr.length; i++)
  {
   if (imgarr[i].getAttribute('hsrc'))
   {
    imgTemp[i] = new Image();
    imgTemp[i].src = imgarr[i].getAttribute('hsrc');
    imgarr[i].onmouseover = function() { imgOriginSrc = this.getAttribute('src'); this.setAttribute('src',this.getAttribute('hsrc')) }
    imgarr[i].onmouseout = function() { this.setAttribute('src',imgOriginSrc) }
   }
  }
 }
 onload = init;


 var k = -20;

 function dochange(form) { k = form.itemselect.selectedIndex; if (k >= 0) { form.submit(); } }
 function dochangeconfirm(form)
 {
  input_box = confirm("Are you sure you want to delete the current item?\n Click OK to delete it, or Cancel to hide this prompt.");
  if (input_box == true)
  {
   if (k >= 0)
   {
    form.submit();
   }
  } else { }
 }

 function deleteconfirm(loc)
 {
  input_box = confirm("Delete sucessful!\n Click OK to view list again it, or Cancel to stop.");
  if (input_box == true)
  {
   if (k >= 0)
   {
    location.href = loc;
   }
  } else { }
 }


 function formHandler(form)
 {
  var URL = document.navigation.page.options[document.navigation.page.selectedIndex].value;
  window.location.href = URL;
 }

  function decision(message, url)
  {
   confirm(message); location.href = url;
  }


if (window.location != top.location) {top.location.href=window.location}