<!--
        var timerID = null;
          var timerRunning = false;
          var id,pause=0,position=0;
          function marquee() {
var i,k,msg="     BESUCHEN SIE UNS AUF FOLGENDEN MESSEN:   +++   Brille & Co Dortmund, Deutschland, September 2010, Halle 3B Stand C0.1. - www.brille-und-co.de   +++   SILMO PARIS, Frankreich, September 2010, Halle 6, Stand D 003 - www.silmoparis.com   +++   ABDO, Bristol, Grossbritannien, Oktober 2010   +++   Opti München, Deutschland, Januar 2011, www.opti-munich.com   +++   Brille & Co Dortmund, Deutschland, Januar 2011, www.brille-und-co.de   +++   MIDO MILANO, ITALIEN, MÄRZ 2011 - www.mido.com   +++   VISION EAST NEW YORK, USA, MÄRZ 2011 - www.visionexpoeast.com   +++   OPTRAFAIR, BIRMINGHAM, GROSSBRITANNIEN, APRIL 2011 - www.optrafair.co.uk     +++";
                  k=(75/msg.length)+1;
                  for(i=0;i<=k;i++) msg+=" "+msg;
document.marqueeform.marquee.value=msg.substring(position,position+220);
                  if(position++==msg.length) position=0;
                  id=setTimeout("marquee()",1000/10); } //geschwindigkeit
          function action() {
                  if(!pause) {
                          clearTimeout(id);
                          pause=1; }
                  else {
                          marquee();
                          pause=0; } }


function chkFormular()
  {
   if(document.Formular.name.value == "")
    {
     alert("Bitte Ihren Namen eingeben!");
     document.Formular.name.focus();
     return false;
    }

	if(document.Formular.vorname.value == "")
    {
     alert("Bitte Ihren Vornamen eingeben!");
     document.Formular.vorname.focus();
     return false;
    }
	  
	  if(document.Formular.strasse.value == "")
    {
     alert("Bitte Ihre Strasse eingeben!");
     document.Formular.strasse.focus();
     return false;
    }
	  if(document.Formular.plz.value == "")
    {
     alert("Bitte Ihre Postleitzahl eingeben!");
     document.Formular.plz.focus();
     return false;
    }
	if(document.Formular.ort.value == "")
    {
     alert("Bitte Ihren Wohnort eingeben!");
     document.Formular.ort.focus();
     return false;
    }
	  if(document.Formular.tel.value == "")
    {
     alert("Bitte Ihren Telefonnummer eingeben!");
     document.Formular.tel.focus();
     return false;
    }
if(document.Formular.fax.value == "")
    {
     alert("Bitte Ihren Faxnummer eingeben!");
     document.Formular.fax.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;
    }
if(document.Formular.firma.value == "")
    {
     alert("Bitte Ihre Firma eingeben!");
     document.Formular.firma.focus();
     return false;
    }
if(document.Formular.land.value == "")
    {
     alert("Bitte geben Sie Ihr Land ein!");
     document.Formular.land.focus();
     return false;
    }
  }
// -->