// Go to URL

function LINKgoToURL() { //v3.0
  var i, args=LINKgoToURL.arguments; document.LINKreturnValue = false;
  for (i=0; i<(args.length-1); i+=2) eval(args[i]+".location='"+args[i+1]+"'");
}

// Show hide div. Modified to use display property.
function DIVshowHide() { //v9.0
  var i,p,v,obj,args=DIVshowHide.arguments;
  for (i=0; i<(args.length-2); i+=3) 
  with (document) if (getElementById && ((obj=getElementById(args[i]))!=null)) { v=args[i+2];
    if (obj.style) { obj=obj.style; v=(v=='show')?'block':(v=='hide')?'none':v; }
    obj.display=v; }
}


