function GoToOtherSite()
{
	try
	{
		var destination = document.getElementById("sitelist").value;
		
		if (destination != "Please select")
		{
			window.location = destination;
		}
	}
	catch(e)
	{
		alert(e.message);
	}
	
	return (false);
}