function changebg( obj , color){
	if (document.getElementById)
	{
	theone = eval("document.getElementById('" + obj + "')");
	theone.style.background = color;
	}	
}

function gotourl( select ) {
      myIndex = select.selectedIndex;
      myValue = select.options[myIndex].value;
      window.location.href = myValue;
   }
