<!-- Hide JavaScriptif(document.images){        image1on = new Image(260,40);        image1on.src = "pix/smart_bar_1.gif";        image1off = new Image(260,40);        image1off.src = "pix/smart_bar_0.gif";}var iMaxImage           =  1;   //H&ouml;chste Bildzahl angebenvar iDefaultImage       =  0;   //Hier das Standardbild angeben (Bild welches Defaultm&auml;ssig angeschaltet wird)var iStaticImage        =  0;   //Bild welches nie gewechselt werden mussvar iLastImage          =  0;var bIE                 =  navigator.appName == "Microsoft Internet Explorer";function turn(imageNr) {        if (isNaN(parseInt(imageNr)) || imageNr == 0) imageNr = iDefaultImage;        if (document.images && (!bIE || imageNr != iLastImage) && (iStaticImage == 0 || imageNr != iStaticImage))        {                                // Neues Bild einschalten                if (imageNr != 0)                {                        imageName = 'image' + imageNr;                        document[imageName].src = eval(imageName + "on.src");                }                if (bIE) // Internetexplorer                {                        if (iLastImage != 0)                        {                                imageName = 'image' + iLastImage;                                document[imageName].src = eval(imageName + "off.src");                        }                                                // Registrieren zuletzt eingeschaltetes Bild                        iLastImage      = imageNr;                }                else    // Netscape                {                        for (i = 1;i <= iMaxImage;i++)                        {                                if (i != imageNr  && i != iStaticImage)                                {                                        imageName = 'image' + i;                                        document[imageName].src = eval(imageName + "off.src");                                }                        }                }        }}// --><!--function chkFormular()        {        if(document.Formular.Name.value == "")                {                alert("Bitte Ihren Namen angeben!");                document.Formular.Name.focus();                return false;                }        if(document.Formular.Strasse.value == "")                {                alert("Bitte Strasse und Nr. eingeben!");                document.Formular.Strasse.focus();                return false;                }                       if(document.Formular.Ort.value == "")                {                alert("Bitte Ihren Wohnort eingeben!");                document.Formular.PLZ_Ort.focus();                return false;                }        if(document.Formular.Email.value == "")                {                alert("Bitte Ihre E-Mail-Adresse eingeben!");                document.Formular.Email.focus();                return false;                }        if(document.Formular.Email.value.indexOf('@') == -1)                {                alert("Keine E-Mail-Adresse!");                document.Formular.Email.focus();                return false;                }        }-->
