function countrySplitter(countryInfo) {
 	var country	="";
 	var abbrev	="";
 	var splittedCountryInfo = countryInfo.split(":");
 	
 	if(countryInfo[0] !== null){
 		abbrev = splittedCountryInfo[0];
	 	countryFlagImgName(abbrev);
 	}else{
 		abbrev = "";
 	}
 	if(countryInfo[1] !== null){
 		country = splittedCountryInfo[1];
 		
 	}else{
 		country = "";
 	}
 	document.getElementById("abbrevNazione").value = abbrev;
 	document.getElementById("exteNazione").value = country;
}

function countryFlagImgName(abbreviazioneNazione){
	var flagImgName="";
	if ( abbreviazioneNazione != null){  
		flagImgName = "img/flags/FLAG_" + abbreviazioneNazione +".gif";
	}else{
		flagImgName = "";
	}
	var base = document.getElementById("baseForm").value;
	document.getElementById("flagLabelImg").src = base + flagImgName;	
}
