// JavaScript Document

function gotoURL()
	{
		
		var selAvail = document.getElementById("selAvail");
		if(selAvail.selectedIndex > 0)
			window.location = selAvail.options[selAvail.selectedIndex].value;
		
	}
	
	function gotolink(sel)
	{
	  if(sel.selectedIndex> 0)
	  {
		var to = sel.options[sel.selectedIndex].value;
		window.location = to;
	  }
	}
	
	