
<!--
function go()
        {
	box=document.forms[0].gowhere;
        if (box.options[box.selectedIndex].value !='none')
        {
        var url=box.options[box.selectedIndex].value.substring(3);
        var id =box.options[box.selectedIndex].value.substring(0,3);
        window.open(url,'','location=yes,directories=yes,status=yes,menubar=yes,scrollbars=yes,copyhistory=yes,resizable=yes');
        box.value='none';
        changeColor("#bcbcbc",id);
        }
	return;
	}

function changeColor(color,id)
	{
	window.document.forms[0].gowhere[id].style.background=color
	}
function onc(obj)	{obj.className="boxout"; return;}
function offc(obj)	{obj.className="boxin"; return;}
function objover(obj)	{obj.style.cursor="hand";}
function objoff (obj)	{obj.style.cursor="default";}
//-->
