// JavaScript Document
<!--
function goOption(x)
{
	var site = x.options[x.selectedIndex].value;
	if (x.selectedIndex > 0)
	{
		window.self.location.href = site;
	}
	return false;
}
//-->
