function JURL(selection) 
   {
      var tempIndex, selectedURL;
      tempIndex = selection.selectedIndex;
      selectedURL = selection.options[tempIndex].value;
      window.top.location.href = selectedURL;
   }

function ow(u,n,p){
window.open(u,n,p)
}

function oww(u,n,p){
window.open(u,n,p)
self.close()
}

function tMe(a){
  var e=document.getElementById(a);
  if(!e)return true;
  if(e.style.display=="none"){
    e.style.display="block"
  } else {
    e.style.display="none"
  }
  return true;
}

rnd.today=new Date();
rnd.seed=rnd.today.getTime();


function rnd() {
        rnd.seed = (rnd.seed*9301+49297) % 233280;
        return rnd.seed/(233280.0);
};


function rand(number) {
        return Math.ceil(rnd()*number);
};

function submitformins()
{
  document.ins.submit();
};

function submitformloan()
{
  document.loan.submit();
};