  	text=new Array();
  	title=new Array();
 	

		
	title[1]="Das undichte Flachdach - ein Sorgenkind!";
	text[1]="<b><u><font color=\"#ff0000\">Der Nässe auf der Spur!</font></u></b><br> " +
		"<b>Mit modernster Technik gehen wir auf die Suche nach Leckstellen.</b><br>" +
		"<b>Unser Know-How auf diesem ausgesprochenen Spezialgebiet sichert i.allg. 100%-igen Erfolg.</b><br>" +
		"<b><font color=\"#ff0000\"><u>Wichtig:</u></font></b><br>" +
		"<b><font color=\"#ff0000\">Diese Dienstleistung gewähren wir auch Drittanbietern!</font></b><br>" ;

	
	title[2]="Finanzierung mit Börner - Top!";
	text[2]="<b>Vor allem unplanmäßige Baumaßnahmen bereiten oftmals Probleme bei der Finanzierung.</b><br>" +
		"<b><font color=\"#ff0000\">Hier empfehlen wir unseren Finanzierungsservice zu <u>äußerst attraktiven Konditionen.</u></b><br>" +
				"<b><font color=\"#0000cc\">Informieren Sie sich über unsere Angebote zur Realisierung von Baumaßnahmen und auch zum Immobilienkauf!</font></b>" ;

	title[3]="Sparen durch GA-Nutzung";
	text[3]="<b>Die Auftragsabwicklung über einen Generalauftrag- nehmer bietet viele Vorteile, wie etwa:</b><br> " +
				"<b><font color=\"#ff0000\">Preisvorteile durch zentrale Disposition und Bindung solider und kostengünstiger Subunternehmer.</font><br>" +
				"<b>Es existiert ein zentraler Ansprechpartner mit kompetenter Bauleitung für den Kunden <br>" +
				"<b><font color=\"#ff0000\">Wir informieren Sie gerne über nähere Details zur Nutzung dieses besonderen Service!</font><br>" ;


				

	var x = 0;
	var xx= 10;
	var yy= -80
	var y = 0;
	var showit = 0;

    // Welchen Browser haben wir denn...  Zeile 5 >0 --> <0
    // ----------------------------------
    ns = (document.layers)? true:false
    ie4 = (document.all)? true:false
    ie6 = false;
    if (ie4) {
    	if (navigator.userAgent.indexOf('MSIE 4')<0) {
    		ie6 = true;
    	}
    }
	
   // Welche Plattform? bei IE auf MAC keine popi-Fenster
 
	if ( navigator.platform.substring(0,3).toUpperCase() == "MAC" && (ie4 || ie5) )  
	{
	   mac = true;
	   } else {
	   mac = false;
	   }

	
	
	
    if ( (ns) || (ie4) ) {
    	if (ns) over = document.popDiv
    	if (ie4) over = popDiv.style
    	document.onmousemove = mouseMove
    	if (ns) document.captureEvents(Event.MOUSEMOVE)
    }


    function wtl(txt) {
    	if (ns) {
    		var lll = document.popDiv.document
    		lll.write(txt)
    		lll.close()
    	} else {
    		if (ie4) document.all["popDiv"].innerHTML = txt
    	}
    }


    function show(obj) {
    	if (ns) obj.visibility = "show"
    	else if (ie4) obj.visibility = "visible"
   }

    function hide(obj) {
    	if (ns) obj.visibility = "hide"
    	else if (ie4) obj.visibility = "hidden"
    }

    function moveTo(obj,lx,ly) {
    	obj.left = lx
    	obj.top = ly
    }


    function hideit() {
    	if (mac) {return;}
		
		if ( (ns) || (ie4) )  {
    		showit = 0;
    		hide(over);
    	}
    }


    // Popup zusammenbasteln
    // ---------------------
    function rpopi(text, title) {
    	txt = "<TABLE WIDTH=280 BORDER=0 CELLPADDING=2 CELLSPACING=0 BGCOLOR=\"#004400\"><TR><TD><TABLE WIDTH=100% BORDER=0 CELLPADDING=2 CELLSPACING=0><TR><TD><B><FONT face=\"Arial, Helvetica\" size=2 class=\"lt\" color=\"#ffffff\">"+title+"</FONT></B></SPAN></TD></TR></TABLE><TABLE WIDTH=100% BORDER=0 CELLPADDING=5 CELLSPACING=0 BGCOLOR=\"#ffffff\"><TR><TD><SPAN ID=\"thetext2\"><FONT face=\"Arial, Helvetica\" COLOR=\"#000000\" size=-2>"+text+"</FONT><SPAN></TD></TR></TABLE></TD></TR></TABLE>"
       	wtl(txt);
    	display_it();
    }


	function popi(i,xm) {
		if (mac) {return;}
		xx=xm;
		rpopi(text[i],title[i]);
    }


    // ...und jetzt anzeigen
    // ---------------
    function display_it() {
    	if ( (ns) || (ie4) ) {
    		if (showit == 0) 	{
    			moveTo(over,x+xx,y+yy);
    			show(over);
    			showit = 1;
    		}
    	}
    }


    // Auf mousemoves reagieren
    // -----------------------
    function mouseMove(e) {
    	if (ns) {x=e.pageX; y=e.pageY;}
    	if (ie4) {x=event.x; y=event.y;}
   	if (ie6) {x=event.x+document.body.scrollLeft; y=event.y+document.body.scrollTop;} 
    	if (showit) {
    		moveTo(over,x+xx,y+yy);
    	}
    }