// JavaScript Document

function Lingua() {
	var lingua = document.SelectLanguage.Language.value;
		
	if (lingua=="Italiano") {
		window.location.href = "/iagpcongress2009/it/index.shtml";
	}
		
	else if (lingua=="English") {
		window.location.href = "/iagpcongress2009/en/index.shtml";
	}
		
	else if (lingua=="Espanol") {
		window.location.href = "/iagpcongress2009/es/index.shtml";
	}
}