<!--	
// DEFINITION DER VARIABLEN
//----------------------------------------------------------------------------------------------------------
	text=new Array();
  	
  	thetitle=new Array();

  	ta="<table cellpadding=1 cellspacing=0 border=0 width=100% bgcolor=\"#FF00FF\"><tr><td align=right>"+
  	   "<font face=\"Verdana,Arial,Helvetica\" size=2>";
 	te="&nbsp;</td></tr></table>";

	thetitle[1] = "Branche";
	text[1] = "Bitte wählen Sie die Branche,<br>die für Sie am besten zutrifft<br>Sie können uns auch per Email<br>eine neue Branche vorschlagen";
	
	thetitle[2] = "Name 1";
	text[2] = "Geben Sie bitte den Firmennamen ein";

	thetitle[3] = "Name 2";
	text[3] = "Geben Sie bitte eine zusätzliche<br>Firmenbezeichnung ein";
	
	thetitle[4] = "Ansprech-Vorname";
	text[4] = "<b>Vor</b>name des Ansprechpartners";
	
	thetitle[5] = "Ansprech-Nachname";
	text[5] = "<b>Nach</b>name des Ansprechpartners";
	
	thetitle[6] = "Text";
	text[6] = "Kurzbeschreibung Ihrer Firma<br>maximal 255 Zeichen";
	
	thetitle[7] = "Email";
	text[7] = "Angabe der Email - <b>zwingend erforderlich</b><br>Sie müssen hier eine gültige Email-Adresse<br>angeben. An diese schicken wir dann eine Email, <br>mit der Sie Sich freischalten können";
	
	thetitle[8] = "URL";
	text[8] = "Angabe Ihrer Internetadresse - <b>zwingend erforderlich</b><br>Geben Sie hier bitte Ihre Internetadresse an. <br>Format http://www.wolnzach.biz";
	
	thetitle[9] = "Passwort";
	text[9] = "wählen Sie bitte ein Passwort<br><b>zwingend erforderlich</b><br>mind. 4 Zeichen";
	
	thetitle[10] = "Beschreibung";
	text[10] = "Hier haben Sie Platz für zusätzliche Beschreibungen.";
	

	var x = 50;
	var xx=0;
	var yy=0;
	var y = 0;
	var showit = 0;

//BROWSER CHECKEN
//----------------------------------------------------------------------------------------------------------

	var NS4	= (navigator.appName.indexOf("Netscape") >= 0 && parseFloat(navigator.appVersion) >= 4) ? 1 : 0;
	var NS6	= (NS4 && document.getElementById) ? 1 : 0;
	if (NS6)
		NS4 = 0;

	var IE = (document.all) ? 1 : 0;
	
	var IE4 = (document.all) ? 1 : 0;
	var IE5 = (IE4 && navigator.appVersion.indexOf("5.") >= 0) ? 1 : 0;


    if ( (NS4) || (IE) || (NS6) ) 
    	{
    	if (NS4) over = document.popDiv
    	if (IE)  over = popDiv.style
	if (NS6) over = document.getElementById('popDiv')

   	if (NS4) document.captureEvents(Event.MOUSEMOVE)
	}

//----------------------------------------------------------------------------------------------------------
    
    function wtl(txt) 
    	{
    	show(over)
    
	if (NS6)
		{
		var layer=over
		var rng	= document.createRange();
		rng.setStartBefore(layer);
		newContent = rng.createContextualFragment(txt);
		while( layer.hasChildNodes() )
			layer.removeChild( layer.lastChild );
		layer.appendChild(newContent);
		}    
    
    	if (NS4) 
    		{
   		var lll = document.popDiv.document
    		lll.write(txt)
    		lll.close()

    		}
      	else 
      		{
    		if (IE) document.all["popDiv"].innerHTML = txt
    		}
    	}
    	
//----------------------------------------------------------------------------------------------------------
    function show(obj) 
    	{
    	if (NS4) obj.visibility = "show"
    	else if (IE) obj.visibility = "visible"
    	else if (NS6) obj.style.visibility = "visible"
    	}


// FUNKTION: MOUSEOUT
// hideit -> hide
//----------------------------------------------------------------------------------------------------------

    function hide(obj) 
    	{
    	if (NS4) obj.visibility = "hide"
    	else if (IE) obj.visibility = "hidden"
    	else if (NS6) obj.style.visibility = "hidden"
    	}

// EBENE BEWEGEN
//---------------------------------------------------------------------------------------------------------- 

    function moveTo(obj,lx,ly) 
    	{
    	if (NS6) 
    		{
    		obj.style.left	=	lx+"px";
    		obj.style.top	=	ly+"px";
    		return	false;
   		} 
   	else 	{
   	 	obj.left = lx
   	 	obj.top = ly
    		}  	
    	}


// FUNKTION: MOUSEOUT
// hideit -> hide
//----------------------------------------------------------------------------------------------------------
    function hideit() 
    	{
    	if ( (NS4) || (IE) || (NS6) ) 
    		{
		showit = 0;
    		hide(over);
    		}
    	}


// EBENE ZUSAMMENSTELLEN
//----------------------------------------------------------------------------------------------------------

    function rpopi(text, title) 
    	{
    	txt = "<TABLE BORDER=0 CELLPADDING=2 CELLSPACING=0 BGCOLOR=\"#003399\"><TR><TD><TABLE WIDTH=100% BORDER=0 CELLPADDING=2 CELLSPACING=0><TR><TD><B><FONT face=\"Arial, Helvetica\" size=2 color=\"#ffffff\">"+title+"</FONT></B></TD></TR></TABLE><TABLE WIDTH=100% BORDER=0 CELLPADDING=5 CELLSPACING=0 BGCOLOR=\"#eeeeee\"><TR><TD><FONT face=\"Arial, Helvetica\" COLOR=\"#000000\" size=2 >"+text+"</FONT></TD></TR></TABLE></TD></TR></TABLE>"
      	wtl(txt);
    	display_it();
    	}

    function popi(i,yn) 
    	{
	yy= yn;
	xx=-10;
		
	if (yy==-111) xx=-335;
	if (yy==-244) xx=-335;

	rpopi(text[i],thetitle[i]);
    	}


// ANZEIGEN
//----------------------------------------------------------------------------------------------------------

    function display_it() 
    	{
	if ( (NS4) || (IE) || (NS6) ) 
		{
    		if (showit == 0) 	
    			{
    			moveTo(over,x+xx,y+yy);
    			show(over);
    			showit = 1;
    			}
    		}
    	}


// REAKTION AUF MAUSZEIGERBEWEGUNG
//-----------------------------