function Clock() {
	if (!document.getElementById) return;
	theclock=document.getElementById("clock");
	var d=new Date()

	var weekday=new Array(7)
	weekday[0]="Sonntag"
	weekday[1]="Montag"
	weekday[2]="Dienstag"
	weekday[3]="Mittwoch"
	weekday[4]="Donnerstag"
	weekday[5]="Freitag"
	weekday[6]="Samstag"

	var monthname=new Array(11)
	monthname[0]="Jänner"
	monthname[1]="Februar"
	monthname[2]="März"
	monthname[3]="April"
	monthname[4]="Mai"
	monthname[5]="Juni"
	monthname[6]="Juli"
	monthname[7]="August"
	monthname[8]="September"
	monthname[9]="Oktober"
	monthname[10]="November"
	monthname[11]="Dezember"

	hours=d.getHours();
	mins=d.getMinutes();
	secs=d.getSeconds();
	day=d.getDay();
	month=d.getMonth();
	year=d.getYear();

	if (secs < 10) secs= "0" + secs;
	if (mins < 10) mins= "0" + mins;
	theclock.innerHTML = weekday[d.getDay()] + ", " + d.getDate() + " " + monthname[d.getMonth()] + " " + year;
}

function ClockIT() {
	if (!document.getElementById) return;
	theclock=document.getElementById("clock");
	var d=new Date()

	var weekday=new Array(7)
	weekday[0]="Domenica"
	weekday[1]="Lunedì"
	weekday[2]="Martedì"
	weekday[3]="Mercoledì"
	weekday[4]="Giovedì"
	weekday[5]="Venerdì"
	weekday[6]="Sabato"

	var monthname=new Array(11)
	monthname[0]="Gennaio"
	monthname[1]="Febbraio"
	monthname[2]="Marzo"
	monthname[3]="Aprile"
	monthname[4]="Maggio"
	monthname[5]="Giugno"
	monthname[6]="Luglio"
	monthname[7]="Agosto"
	monthname[8]="Settembre"
	monthname[9]="Ottobre"
	monthname[10]="Novembre"
	monthname[11]="Dicembre"

	hours=d.getHours();
	mins=d.getMinutes();
	secs=d.getSeconds();
	day=d.getDay();
	month=d.getMonth();
	year=d.getYear();

	if (secs < 10) secs= "0" + secs;
	if (mins < 10) mins= "0" + mins;
	theclock.innerHTML = weekday[d.getDay()] + ", " + d.getDate() + " " + monthname[d.getMonth()] + " " + year;
}


function ClockEN() {
	if (!document.getElementById) return;
	theclock=document.getElementById("clock");
	var d=new Date()

	var weekday=new Array(7)
	weekday[0]="Sunday"
	weekday[1]="Monday"
	weekday[2]="Tuesday"
	weekday[3]="Wednesday"
	weekday[4]="Thursday"
	weekday[5]="Friday"
	weekday[6]="Saturday"

	var monthname=new Array(11)
	monthname[0]="January"
	monthname[1]="February"
	monthname[2]="March"
	monthname[3]="April"
	monthname[4]="May"
	monthname[5]="June"
	monthname[6]="July"
	monthname[7]="August"
	monthname[8]="September"
	monthname[9]="October"
	monthname[10]="November"
	monthname[11]="December"

	hours=d.getHours();
	mins=d.getMinutes();
	secs=d.getSeconds();
	day=d.getDay();
	month=d.getMonth();
	year=d.getYear();

	if (secs < 10) secs= "0" + secs;
	if (mins < 10) mins= "0" + mins;
	theclock.innerHTML = weekday[d.getDay()] + ", " + d.getDate() + " " + monthname[d.getMonth()] + " " + year;
}


function IsMap() {
window.open("http://www.val-gardena.net/location.asp","POPMap","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizeable=0,width=700,height=450")
}



