// JavaScript Document
function gotopage(obj, idx) 
{
	 var target;
	 target = obj.options[obj.selectedIndex].value;
	 obj.selectedIndex = idx;
	 window.location = target;
}