  function onloadpage() {
    var nme = document.all("name");
    if (nme != null) nme.focus();
    return true;
  }

  function adjustsize(elename, size) {
    var ele = document.all(elename);
    if (ele != null) {
      if (document.body.clientHeight > size) {
        ele.style.height = size + "px";
      } else {
        ele.style.height = "100%";
      }
    }
  }
  
  function loadinfopic( classname, imgloc, textvar) {
    try
      {
        var imgitem = document.all(imgloc);
        if (imgitem != null) {
          imgitem.className = classname;
          imgitem.innerHTML = textvar;
        }
        return false;
      }
    finally {
      return false;
    }
  }

  function doreset() {
    var frm = document.all("login");
    if (frm != null) frm.reset();
  }

  function dosubmit() {
    var frm = document.all("login");
    if (frm != null) frm.submit();
  }
  
  function showerr( text ) {
    var err = document.all("error");
    if (err != null) {
      err.innerText = text;
    }
  }

  function dologin() {
    var nme = document.all("name");
    if (nme != null) {
      if (nme.value == "admin") {
        dosubmit();
      } else {
        showerr("Invalid Username");
      }
    }
  }
  
  function onkeylogin() {
    if (event.keyCode == "13") {
      dologin();
      event.returnValue = false;
    }
  }

	function OnChangeColor(strField, strDirection) {
		//If getting focus
		if (strDirection=="F") {
			strField.style.backgroundColor='#D1D8E2';
			return false;
		}
		//If losing focus
		else {
			strField.style.backgroundColor='#FFFFFF';
			return false;
		}
		return false;
	}


	function OnChangeColorElements(strField, strDirection) {
		//If getting focus
		if (strDirection=="F") {
			strField.style.backgroundColor='#D1D8E2';
			return false;
		}
		//If losing focus
		else {
			strField.style.backgroundColor='';
			return false;
		}
		return false;
	}

	
	
  function onshowdetails( type, obj ) {
    if (type == null) return false;
    var hrows = document.all(type);
    var i;
    if (hrows.length != null) {
      for (i = 0; i < hrows.length; i++) {
        if (hrows[i].style.display == "none") {
          hrows[i].style.display = "block";
          obj.style.color = "#FFFFC4"
        } else {
          hrows[i].style.display = "none"
          obj.style.color = "#EAEAEA"
        }
      }
    }
    return false;
  }
  
  function onclickpage(page) {
    window.navigate(page);
  }
  
  
  function FP_swapImg() {//v1.0
   var doc=document,args=arguments,elm,n; doc.$imgSwaps=new Array(); for(n=2; n<args.length;
   n+=2) { elm=FP_getObjectByID(args[n]); if(elm) { doc.$imgSwaps[doc.$imgSwaps.length]=elm;
   elm.$src=elm.src; elm.src=args[n+1]; } }
  }

  function FP_preloadImgs() {//v1.0
   var d=document,a=arguments; if(!d.FP_imgs) d.FP_imgs=new Array();
   for(var i=0; i<a.length; i++) { d.FP_imgs[i]=new Image; d.FP_imgs[i].src=a[i]; }
  }

  function FP_getObjectByID(id,o) {//v1.0
   var c,el,els,f,m,n; if(!o)o=document; if(o.getElementById) el=o.getElementById(id);
   else if(o.layers) c=o.layers; else if(o.all) el=o.all[id]; if(el) return el;
   if(o.id==id || o.name==id) return o; if(o.childNodes) c=o.childNodes; if(c)
   for(n=0; n<c.length; n++) { el=FP_getObjectByID(id,c[n]); if(el) return el; }
   f=o.forms; if(f) for(n=0; n<f.length; n++) { els=f[n].elements;
   for(m=0; m<els.length; m++){ el=FP_getObjectByID(id,els[n]); if(el) return el; } }
   return null;
  }

  function FP_swapImgRestore() {//v1.0
   var doc=document,i; if(doc.$imgSwaps) { for(i=0;i<doc.$imgSwaps.length;i++) {
    var elm=doc.$imgSwaps[i]; if(elm) { elm.src=elm.$src; elm.$src=null; } }
    doc.$imgSwaps=null; }
  }
