// JavaScript Document
function OnChange(dropdown)
{
	var myindex		=	dropdown.selectedIndex;
	var selValue	=	dropdown.options[myindex].value;
	top.location.href = selValue;
	return true;
}