function WinOpen() {
var country_selects = document.getElementById("redirect_select");
 var x = country_selects.selectedIndex;
 var country_text = country_selects.options[x].text;
 var country_web_address = country_selects.options[x].value;
 document.location.href=country_web_address;
}

function init (){
	//var countrylinks = document.getElementById("countrystaticlinks");
	//countrylinks.setAttribute("class", "hidden");
	//countrylinks.setAttribute("className", "hidden");
	//countrylinks.parentNode.removeChild(countrylinks);
	var countryform = document.getElementById("countryredirect");
 	//countryform.setAttribute('style','visibility:visible');
 	countryform.setAttribute("class", "visible");
	countryform.setAttribute("className", "visible");
}

YAHOO.util.Event.addListener(window, 'load', init); 

