// JavaScript Document
navbOn = new Image();
navbOn.src = "../images/bb_on.gif";
navfOn = new Image();
navfOn.src = "../images/fb_on.gif";

function jumpMenu(targ,selObj,restore){
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}

function adjustRatio(img)
{
    if(document.body.clientHeight < img.height)
    {
        img.style.height = '85%';
        img.style.width = 'auto';
    }
    else if(document.body.clientWidth < img.width)
    {
        img.style.width = '85%';
        img.style.height = 'auto';
    }
}

function setFocus()
{
document.getElementById("myusername").focus();
}
