var lang;
var Breite;
var Hoehe;
var aktuelleBreite = 0;
var el;

function chFrame (Framename, URI) {
  parent[Framename].location.href = URI;
}

function dobutton1(cellid) {
	document.getElementById(cellid).className='button1';
}
function dofoto1(foto,w,h)
{


	var h = "<img onclick='doclear()' style='MARGIN-TOP: " + x + "pt; MARGIN-LEFT: " + y + 
		"pt; WIDTH: " + w + "pt; " +
		"HEIGHT: " + h + "pt;' src='" + foto + "'>";
	document.getElementById("foto").innerHTML=h;
}
function dofoto(foto,w,h)
{
	el = document.getElementById("foto");
	Breite=w;
	Hoehe=h;
	el.innerHTML="<img onclick='doclear()' src='" + foto + "' alt='Ausblenden'>";;
	el.style.clip = "rect(0 0 " + Hoehe + "px 0)";
	fotoShow();
}
function fotoShow() {
	if (aktuelleBreite <= Breite) {
		el.style.clip = "rect(0 " + aktuelleBreite + "px " + Hoehe + "px 0)";
		aktuelleBreite = aktuelleBreite + 6;
		window.setTimeout("fotoShow()", 1);
	} else {
		aktuelleBreite = 0;
	    el.style.clip = "rect(0 " + Breite + "px " + Hoehe + "px 0)";
	}
}

function doclear()
{
	document.all.foto.innerHTML="";
}
function dobutton(cellid) {
	document.getElementById(cellid).className='button';
}
function docmd(sitename) {
	document.location.href=sitename + "_" + lang + ".html";
}
function homede() {
	document.location.href="home_de.html";
	alert("homede");
	set_lang_it();
}
function homeit() {
	document.open("home_de.html", "repleace");
	//alert("homeit");
	set_lang_it();
}


function set_lang_de() {
	lang='de'
	document.all.anreise.innerHTML="Anreise&nbsp;";
	document.all.zmm.innerHTML="Zimmer&nbsp;";
	document.all.prs.innerHTML="Preise&nbsp;";
	document.all.kch.innerHTML="Küche&nbsp;";
	document.all.umg.innerHTML="Umgebung";
	document.all.addresse.innerHTML="<b><br>Fam. Kofler</b><br>" +
		"Egg 11<br>I-39040 <b>Freienfeld</b> (BZ)<br><br>"+
		"Tel (0472) 771990<br>Fax (0472) 771962<br>f.kofler@rolmail.net";
}
function set_lang_it() {
	lang='it';
	document.all.anreise.innerHTML="Arrivo&nbsp;";
	document.all.anreise.onclick="docmd('anreise_it')";
	document.all.zmm.innerHTML="Camere&nbsp;";
	document.all.prs.innerHTML="Prezzi&nbsp;";
	document.all.kch.innerHTML="Cucina&nbsp;";
	document.all.umg.innerHTML="Ambiente";
	document.all.addresse.innerHTML="<b><br>Fam. Kofler</b><br>" +
		"Dosso 11<br>39040 <b>Campo di Trens</b> (BZ)<br><br>"+
		"Tel (0472) 771990<br>Fax (0472) 771962<br>f.kofler@rolmail.net";

}
function set_img(img_id, img) {
	document.getElementById(img_id).src=img;
}