function ChangeLocation( objSelect )
{
	strURL = objSelect.options[objSelect.selectedIndex].value;
	if ( strURL != "" ) 
	{ 
		location.href= strURL; 
	}
}
