<!--
function MM_reloadPage(init) { //reloads the window if Nav4 resized
 if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
 document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
 else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);

//-->

<!--
var browser = navigator.appName;

function mOver1(Navibg)
{

 if(browser == "Netscape")
 {
 document.getElementById(Navibg).style.backgroundColor="#577CB3";
 }


 if(browser == "Microsoft Internet Explorer")
 {
 document.all(Navibg).style.backgroundColor="#577CB3";
 }
}
function mOut1(Navibg)
{

 if(browser == "Netscape")
 {
 document.getElementById(Navibg).style.backgroundColor="#315F9A";
 }


 if(browser == "Microsoft Internet Explorer")
 {
 document.all(Navibg).style.backgroundColor="#315F9A";
 }
}
//-->
<!--
function neuFenster(Url,Name)
 {
 window.open(Url,Name,"height=400,width=400,screenX=50,screenY=100, top=100, left=50,scrollbars=yes,resizable=no,locationbar=no, toolbar=no ,menubar=no , status=no");
 }
//-->
<!--
function poppi(Url,Name)
 {
 Poppi = window.open(Url,Name,"height=550,width=400,screenX=40,screenY=100, top=100, left=40,scrollbars=yes,resizable=no,locationbar=no, toolbar=no ,menubar=no , status=no");
 setTimeout("fensterzu()",20000);
 }
//-->
<!--
function fensterzu()
 {
 Poppi.close();
 }
//-->

<!--
function neuFenster2(Url,Name)
 {
 window.open(Url,Name,"height=490,width=696,screenX=50,screenY=100, top=100, left=50,scrollbars=yes,resizable=no,locationbar=no, toolbar=no ,menubar=no , status=no");
 }
//-->
<!--
function neuFenster3(Url,Name)
 {
 window.open(Url,Name,"height=550,width=461,screenX=50,screenY=50, top=50, left=50,scrollbars=yes,resizable=no,locationbar=no, toolbar=no ,menubar=no , status=no");
 }
//-->
<!--
function Fensterfabrikate(Url,Name)
 {
 window.open(Url,Name,"height=335,width=635,screenX=50,screenY=100, top=100, left=50,scrollbars=yes,resizable=no,locationbar=no, toolbar=no ,menubar=no , status=no");
 window.focus();
 }
//-->
<!--
function Fensterfocus()
 {
 window.focus();
 }
//-->
<!--
function adresse()
 {
 var Adresse = 'Tel.: +49 173 - 95 40 999<br><a href="mailto:hd@tacho-km.de" title="E-Mail an GMT">E-MAIL</a><br><br><span class="text11"><strong>GMT</strong></span><br>Tuning<br>Groethofstraat 25<br>5916PA Venlo<br>Holland';

 if (document.getElementById)
 {
 x = document.getElementById("adresse");
 x.innerHTML = '';
 x.innerHTML = Adresse;
 }
 else if (document.all)
 {
 x = document.all[adresse];
 x.innerHTML = Adresse;
 }
 }
//-->
<!--
function news()
 {
 var News = '<h3>*** BRANDNEU ***</h3><font color="#990033">- <strong>Einzelnversion erh&auml;tlich</strong><br>Preis auf Anfrage<br>Für BMW, Mercedes, VW<br>BMW, Audi, Ford, Opel<br><strong>und viele mehr!</strong><br><br><strong>Renault ABS</strong><br>Jetzt programmierbar!<br><br><strong>BSI-Steuerger&auml;te</strong><br> jetzt über ODBII - Renault, Citroen, Peugeot<br><br><strong>Mercedes C-Klasse</strong> <br>ab 2006 spurenfreie Programmierung &uuml;ber Diagnose<br></font>';

 if (document.getElementById)
 {
 x = document.getElementById("news");
 x.innerHTML = '';
 x.innerHTML = News;
 }
 else if (document.all)
 {
 x = document.all[news];
 x.innerHTML = News;
 }
 }
//-->

<!--
function checkdata()
 {
 var Name = document.Kontakt.Name.value;
 var Vorname = document.Kontakt.Vorname.value;
 var Telefon = document.Kontakt.Telefon.value;
 var Email = document.Kontakt.Email.value;
 var Text = document.Kontakt.Text.value;
 var re_email = /^([_a-zA-Z0-9-]+)(\.[_a-zA-Z0-9-]+)*@([a-zA-Z0-9-]+\.)+([a-zA-Z]{2,3})$/;
 var checked = true;

 if (Vorname.length<2)
 {
 alert("Der Vorname muss mindestens 2 Zeichen enthalten.");
 checked = false;
 document.Kontakt.Vorname.focus();
 }

 if (Name.length<2)
 {
 alert("Der Name muss mindestens 2 Zeichen enthalten.");
 checked = false;
 document.Kontakt.Name.focus();
 }

 if (Telefon.length=="" && Email.length =="")
 {
 alert("Sie mssen entweder eine g ltige E-Mailadresse oder eine Telefonnummer angeben.");
 checked = false;
 document.Kontakt.Telefon.focus();
 }

 if (Email !="" && (re_email.test(Email))==false)
 {
 alert("Die eingegebene E-Mail-Adresse ist falsch!");
 checked = false;
 }

 if (Text.length<1)
 {
 alert("Bitte geben Sie eine Nachricht ein.");
 checked = false;
 document.Kontakt.Text.focus();
 }

 if (checked)
 {
 document.Kontakt.method = "post";
 document.Kontakt.action="kontakt.php4";
 document.Kontakt.submit();
 }
 return checked;
}
//-->
<!--
function checkdataempf()
 {
 var Nameempf = document.Empfehlung.Nameempf.value;
 var Emailempf = document.Empfehlung.Emailempf.value;
 var re_email = /^([_a-zA-Z0-9-]+)(\.[_a-zA-Z0-9-]+)*@([a-zA-Z0-9-]+\.)+([a-zA-Z]{2,3})$/;
 var checked = true;

 if (Nameempf.length<2)
 {
 alert("Der Name muss mindestens 2 Zeichen enthalten.");
 checked = false;
 document.Empfehlung.Nameempf.focus();
 }

 if (Emailempf =="" || (re_email.test(Emailempf))==false)
 {
 alert("Geben Sie eine gültige E-Mail-Adresse ein!");
 checked = false;
 document.Empfehlung.Emailempf.focus();
 }

 if (checked)
 {
 document.Empfehlung.method = "post";
 document.Empfehlung.action="../htdocs/empfehlung.php4";
 document.Empfehlung.submit();
 }
 return checked;
}
//-->
<!--
function checkdatakont()
 {
 var Nameempf = document.Empfehlung.Nameempf.value;
 var Emailempf = document.Empfehlung.Emailempf.value;
 var re_email = /^([_a-zA-Z0-9-]+)(\.[_a-zA-Z0-9-]+)*@([a-zA-Z0-9-]+\.)+([a-zA-Z]{2,3})$/;
 var checked = true;

 if (Nameempf.length<2)
 {
 alert("Der Name muss mindestens 2 Zeichen enthalten.");
 checked = false;
 document.Empfehlung.Nameempf.focus();
 }

 if (Emailempf =="" || (re_email.test(Emailempf))==false)
 {
 alert("Geben Sie eine gültige E-Mail-Adresse ein!");
 checked = false;
 document.Empfehlung.Emailempf.focus();
 }

 if (checked)
 {
 document.Empfehlung.method = "post";
 document.Empfehlung.action="empfehlung.php4";
 document.Empfehlung.submit();
 }
 return checked;
}
//-->
