/* ########### Bildpreloader ############## */homeP = new Image();                       /* neue Bildobjekte */homeP.src = "../pix/gif/home_p.gif";    /* fuer Button Xchange */homeA = new Image();homeA.src = "../pix/gif/home_a.gif";prodottiP = new Image();                       prodottiP.src = "../pix/gif/prodotti_p.gif";    prodottiA = new Image();prodottiA.src = "../pix/gif/prodotti_a.gif";storiaP = new Image();                       storiaP.src = "../pix/gif/storia_p.gif";    storiaA = new Image();storiaA.src = "../pix/gif/storia_a.gif";contattoP = new Image();                       contattoP.src = "../pix/gif/contatto_p.gif";    contattoA = new Image();contattoA.src = "../pix/gif/contatto_a.gif";productsP = new Image();                       productsP.src = "../pix/gif/products_p.gif";    productsA = new Image();productsA.src = "../pix/gif/products_a.gif";historyP = new Image();                       historyP.src = "../pix/gif/history_p.gif";    historyA = new Image();historyA.src = "../pix/gif/history_a.gif";contactP = new Image();                       contactP.src = "../pix/gif/contact_p.gif";    contactA = new Image();contactA.src = "../pix/gif/contact_a.gif";/* ########### Button Xchange ############# */function biwe(name, neu) { 	window.document.images[name].src=neu.src;}/* ############## Formularabfrage ################ */function inquCheck(formdata){  var name = formdata.name.value;         /* Var mit Namen */  var email = formdata.email.value;   /* Var mit Email */  var comment = formdata.comments.value;     /* Var mit Inhalt */    if (name == "")    {    alert("Your Name is missing");    formdata.name.focus();    formdata.name.select();    return false;    }  if (email == "")    {    alert("Please enter Your Email-adress");    formdata.email.focus();    formdata.email.select();    return false;    }  if (comment == "")    {    alert("What do You want to know?");    formdata.comments.focus();    formdata.comments.select();    return false;    }}/* ############### oeffnet Fenster fuer Bilder ########## */function fensterAuf(was)  {    var url = was;    var optionen = "status=no,width=500,height=400,locationbar=no,historybar=no,resizable=no";    Fenster=window.open(was,'',optionen);      }/* ############### oeffnet Fenster fuer Karte ########## */function karteAuf(was)  {    var url = was;    var optionen = "status=no,width=500,height=500,locationbar=no,historybar=no,resizable=no";    Fenster=window.open(was,'',optionen);      }/************** schliesst ein Fenster *********/function fensterZu()  {   window.close();  }