/*

Javascript document to direct the user to a country from
from the country drop down.

*/

function submitCountrySelectContacts () {     
	var sel = document.getElementById('countrySelectorContacts');     
	var sid = sel.selectedIndex;     
	if (sid < 1) { 
		alert ('Please select a Country.'); 
		return; 
	}     
	window.location.href=sel[sid].value;  
} 