function rollover(img_name, img_src){
        document[img_name].src=img_src;
}

function go()
{
	box = document.forms[0].navi;
	destination = box.options[box.selectedIndex].value;
	if (destination) location.href = destination;
}
