function resetSelect()
{
	var list = document.forms[0].urllist;
	list.selectedIndex = 0;
	
}	/* end of function resetSelect() */

function gothere()
{
	var list = document.forms[0].urllist;

	var currentLocation = 	parent.main.location;
	var destination = 	list.options[list.selectedIndex].value;

	if(currentLocation != destination)
		parent.main.location = destination;

}	/* end of function gothere() */

function goIndex()
{
	var list = document.forms[0].urllist;
	document.location = list.options[list.selectedIndex].value;
}	/* end of function goIndex() */
