function visitCountry(sel) {

	if (sel.options[sel.selectedIndex].value) {
	var test = sel.options[sel.selectedIndex].value;
	var openWin = window.open(test,"","status=yes,scrollbars=yes,resizable=yes,toolbar=yes,location=yes");
	
	//top.location.href = sel.options[sel.selectedIndex].value;

	}
}
