


<!---

function RollOver (obj,val) {
  obj.src = val;
} 


function AOpen(WO){

	NewWin=window.open("","MWindow","toolbar=no,location=yes,directories=no,status=yes,scrollbars=yes,resizable=yes,width=330,height=600");
	NewWin.location.href=WO;
	NewWin.focus();
}


function fenavi()
        {
        thenumber = document.theform.thepulldown.selectedIndex;
        changeto =
document.theform.thepulldown.options[thenumber].value;
        if (changeto == "gonowhere")
                {
                // do nothing
				}        
        else
                {
                if (changeto == "/feuniv/index.html")
                	{
                	window.open("/feuniv/index.html","feuniv","toolbar=yes,location=yes,directories=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes")
                	}
                else if (changeto == "/ready-go/book/backnumber.html")
                	{
                	window.open("/ready-go/book/backnumber.html","ReadyGo","toolbar=yes,location=yes,directories=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes")
                	}
                else
                	{
               	window.top.location = changeto
                	}
                }
        }





//--->