// JavaScript Document
navHover = function() {
  var lis = document.getElementById("navmenu").getElementsByTagName("LI");
  for (var i=0; i<lis.length; i++) {
    lis[i].onmouseover=function() {
      this.className+=" iehover";
    }
    lis[i].onmouseout=function() {
      this.className=this.className.replace(new RegExp(" iehover\\b"), "");
    }
  }
}
if (window.attachEvent) window.attachEvent("onload", navHover);

function CheckOut(productid)
{
window.location.href="http://www.pass4sure.com/big/ShoppingCart.asp?action=checkout&code=no&id="+productid;
return false;
}

function AddtoCart(productid)
{window.location.href="http://www.pass4sure.com/big/ShoppingCart.asp?action=addtocart&id="+productid;}

function DemoDown(productid)
{window.location.href="http://www.pass4sure.com/big/DemoDown.asp?proid="+productid;}

function MM_preloadImages() { //v3.0
  var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
    var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
    if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}