function Adresse(Auswahl)
{        var var1 = '.net';
	var var2 = '@';
         var var3 = 'info';
         var var4 = 'bacherhof';

         if (Auswahl == "Submit")
		document.write("<input type=\"hidden\" name=\"TO\" value=\"" + var3 + var2 + var4 + var1 +"\">");
         else
         	{
                 document.write("Fam. Hofer, Avenes 279, I-39040 Val di Vizze<br> E-Mail:");
         	document.write("<a href=\"mailto:" + var3 + var2 + var4 + var1 + "\">");
                 document.write(var3 + var2 + var4 + var1 + "</a><br>");
                 document.write("Tel./Fax: (+39) 0472/646057");
                 }
}


function NavigationIE()
{
if(window.navigator.systemLanguage && !window.navigator.language) {
  function hoverIE() {
    var LI = document.getElementById("Navigation").firstChild;
    do {
      if (sucheUL(LI.firstChild)) {
        LI.onmouseover=einblenden;
        LI.onmouseout=ausblenden;
      }
      LI = LI.nextSibling;
    }
    while(LI);
  }

  function sucheUL(UL) {
    do {
      if(UL) UL = UL.nextSibling;
      if(UL && UL.nodeName == "UL") return UL;
    }
    while(UL);
    return false;
  }

  function einblenden() {
    var UL = sucheUL(this.firstChild);
    UL.style.display = "block";
    UL.style.left = "7.2em";
  }
  function ausblenden() {
    sucheUL(this.firstChild).style.display = "none";
  }

  window.onload=hoverIE;
}
}


function Navigation(Element)
{
//Element bezeichnet die aktuelle Seite

document.writeln("<div id=\"Rahmen\">");
document.writeln("<img style=\"margin-bottom: 2em; position: relative; left: 0.9em; width: 6.1em; height:6.5em;\"");
document.write("src=\"../images/logo.gif\" alt=\"Roter Hahn\">");

/*document.writeln("<a href=\"../ita/home.html\"><img style=\"border-style:none; position: absolute;");
document.write("margin-bottom: 1em; left:3em; top:10em; height:0.7em;\"");
document.write("src=\"../images/italienisch.gif\" alt=\"Italiano\" name=\"Italiano\"></a>");

document.writeln("<a href=\"../eng/home.html\"><img style=\"border-style:none; position: absolute;");
document.write("margin-bottom: 1em; left: 5em; top:10em; height:0.7em;\"");
document.write("	src=\"../images/english.gif\" alt=\"English\" name=\"English\"></a>");

document.writeln("<a href=\"../fra/home.html\"><img style=\"border-style:none; position: absolute;");
document.write("margin-bottom: 1em; left: 7em; top:10em; height:0.7em;\"");
document.write("	src=\"../images/francais.gif\" alt=\"Francaise\" name=\"Francaise\"></a>");*/

document.writeln("<ul id=\"Navigation\">");

if (Element == "Home")
	document.writeln("<li><span>Home</span></li>");
else
	document.writeln("<li><a href=\"./home.html\">Home</a></li>");

if (Element == "Zimmer")
	document.writeln("<li><span>Les chambres</span></li>");
else
	document.writeln("<li><a href=\"./zimmer.html\">Les chambres</a></li>");

if (Element == "Sommer")
	document.writeln("<li><span>En ètè</span></li>");
else
	document.writeln("<li><a href=\"./sommer.html\">En ètè</a></li>");

if (Element=="Winter")
	document.writeln("<li><span>En hiver</span></li>");
else
	document.writeln("<li><a href=\"./winter.html\">En hiver</a></li>");

if (Element == "Anreise")
	document.writeln("<li><span>Où nous trouver?</span></li>");
else
         document.writeln("<li><a href=\"./anreise.html\">Où nous trouver?</a></li>");

if (Element == "Preise")
	document.writeln("<li><span>Les prix</span></li>");
else
	document.writeln("<li><a href=\"./preise.html\">Les prix</a></li>");

if (Element == "Buchen")
	document.writeln("<li><span>Demande de Reservation</span></li>");
else
	document.writeln("<li><a href=\"./buchen.html\">Demande de Reservation</a></li>");

document.writeln("</ul></div>");
}
