function showBorderAroundLink(obj){
	obj.style.borderBottomWidth = "1 px";
	obj.style.borderTopWidth = "1 px";
}

function removeBorderAroundLink(obj){
	obj.style.borderBottomWidth = "0 px";
	obj.style.borderTopWidth = "0 px";
}

function submitForm(){
	var index = document.countryListForm.countryListDropDown.selectedIndex;
	
	if( index != 0 ){
		 var link = document.countryListForm.countryListDropDown.options[index].value;
		 eval("parent.location='" + link + "'");
		 document.countryListForm.countryListDropDown.selectedIndex = 0;
	}
}
