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

// for changable sign in form
function focus1(){
	document.getElementById('sleft1').style.width = "65px";
	document.getElementById('sleft2').style.width = "30px";
}

function focus2(){
	document.getElementById('sleft1').style.width = "30px";
	document.getElementById('sleft2').style.width = "65px";
}

// change the display of stuff
function unstate(layerid,type){
  if(type=='on')
    document.getElementById(layerid).style.display=""; 
      else document.getElementById(layerid).style.display="none";
}