
function setInfo(box) {
	var locIndex = document.getElementById("LocationComboBox").selectedIndex;
	var locName  = document.getElementById("LocationComboBox").value;
	var lat = 0.00;
	var lon = 0.00;
	var height = 0.00;
	var imgPath = "ST_user";
	if (locIndex == 0) {
		lat = 52.47;
		lon = 13.30;
		imgPath = "ST_Berlin.gif";
	}
	else if (locIndex == 1){
		lat = 32.0;
		lon = 34.82;
		imgPath = "ST_BetDagan.gif";
	}
	else if (locIndex == 2){
		lat = 50.26;
		lon = 10.96;
		imgPath = "ST_Coburg.gif";
	}
	else if (locIndex == 3){
		lat = 48.0;
		lon = 7.85;
		imgPath = "ST_Freiburg.gif";
	}
	else if (locIndex == 4){
		lat = 37.08;
		lon = 14.55;
		imgPath = "ST_Gela.gif";
	}
	else if (locIndex == 5){
		lat = 53.63;
		lon = 10.0;
		imgPath = "ST_Hamburg.gif";
	}
	else if (locIndex == 6){
		lat = 37.93;
		lon = 22.95;
		imgPath = "ST_Korinthos.gif";
	}
	else if (locIndex == 7){
		lat = 40.45;
		lon = -3.72;
		imgPath = "ST_Madrid.gif";
	}
	else if (locIndex == 8){
		lat = 38.18;
		lon = 15.55;
		imgPath = "ST_Messina.gif";
	}
	else if (locIndex == 9){
		lat = 45.46;
		lon = 9.18;
		imgPath = "ST_Milano.gif";
	}
	else if (locIndex == 10){
		lat = 37.98;
		lon = -1.13;
		imgPath = "ST_Murcia.gif";
	}
	else if (locIndex == 11){
		lat = 39.56;
		lon = 2.64;
		imgPath = "ST_PalmaDeMallorca.gif";
	}
	else if (locIndex == 12){
		lat = 48.97;
		lon = 2.45	;
		imgPath = "ST_Paris.gif";
	}
	else if (locIndex == 13){
		lat = 52.38;
		lon = 13.05;
		imgPath = "ST_Potsdam.gif";
	}
	else if (locIndex == 14){
		lat = 48.77;
		lon = 9.17;
		imgPath = "ST_Stuttgart.gif";
	}
	else if (locIndex == 15){
		lat = 38.02;
		lon = 12.52;
		imgPath = "ST_Trapani.gif";
	}
	
	document.getElementById("LocationInfo").innerHTML =
	 "<div style='width:450px; float:left;margin-top:15px; margin-right:15px;'>" +
	 "<iframe width='450' height='300' frameborder='0' scrolling='no' marginheight='0' marginwidth='0' src='http://maps.google.com/maps?q="+locName+"&amp;ie=UTF8&amp;hq=&amp;hnear="+locName+"&amp;ll="+lat+","+lon+"&amp;spn=2.614156,8.453979&amp;z=6&amp;output=embed'></iframe>" +
	 "</div>" +
   "<img src='images/locations/"+imgPath+"' style='margin-top:15px;'/>" + 
   "<p>" + locName + "<p/>" + 
   "<table style='float:left; width: 160px;'>" +
   "<tr><td>" +
   "<p class='labelInfoPV'>Latitude:</p>" +"</td><td>" +"<input class='wert' value='"+lat+"'>" +
   "</td></tr><tr><td>" +
   "<p class='labelInfoPV'>Longitude:</p>" +"</td><td>" +"<input class='wert' value='"+lon+"'>" +
   "</td></tr>" + 
   "</table>"+
	 "";
}
