// JavaScript Document

function selectevent(list_id) 
{
var list=document.getElementById(list_id);
var selected_value=list.options[list.selectedIndex].value;
if (selected_value)
	window.location.hash=selected_value;
}

function changePage(list_id) 
{
var list=document.getElementById(list_id);
var selected_value=list.options[list.selectedIndex].value;
if (selected_value)
	window.location=document.getElementById(selected_value).href;
}

