/* Script to navigate from a drop down box		*/

function goThereProvider() {

	var list = document.forms.provider.GoTo;
	location = list.options[list.selectedIndex].value;
	list.selectedIndex = 0;

}

function goThereMenu() {

	var list = document.forms.menu.GoTo;
	location = list.options[list.selectedIndex].value;
	list.selectedIndex = 0;

}