function goToProvince(lang) {
	
	var tempIndex, selectedURL
	
	//tempIndex = document.ProvinzForm.elements[0].selectedIndex
	tempIndex = document.ProvinzForm.provinces.selectedIndex
	selectedURL = document.ProvinzForm.provinces.options[tempIndex].value
	provincepage = "/"+lang+"/provinces/"+selectedURL+"?lang="+lang
	//alert(provincepage) ;
	window.location.href = provincepage
}

/*
function JumpURL(selection) {
	var tempIndex, selectedURL

	tempIndex = selection.selectedIndex
	selectedProvince = selection.options[tempIndex].value

	openWindow(selectedProvince)

}
*/


function showStatement(lang,continent){
	
	var min = 1
	var max = 2
	var ran = parseInt(Math.random() * (max - min) + min)
	var url = "/"+lang+"/statements/"+continent+"_"+ran+".html?"+continent+"::::"+lang
	
	self.name="homewin";

	win = window.open(url,"StatementWin","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=1,width=500,height=470")
	win.focus();      
}

function showStatementFenster(lang){

	var tempIndex, continent

	tempIndex = document.StatementForm.elements[0].selectedIndex
	continent = document.StatementForm.province.options[tempIndex].value

	var min = 1
	var max = 2
	var ran = parseInt(Math.random() * (max - min) + min)
	var url = "/"+lang+"/statements/"+continent+"_"+ran+".html?"+continent+"::::"+lang

	self.name="homewin";

	win = window.open(url,"StatementWin","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=1,width=500,height=470")
	win.focus();      

}


function langChoice(){

var tempIndex, selectedLanguage

tempIndex = document.LanguageForm.selectLanguage.selectedIndex
language = document.LanguageForm.selectLanguage.options[tempIndex].value

startpage = language+"/index.html"
document.location = language

}

function go(){

tempIndex = document.LanguageForm.selectLanguage.selectedIndex
language = document.LanguageForm.selectLanguage.options[tempIndex].value
overviewpage = language+"/index.html"
document.location = overviewpage

}




