<!--

//Einleitung: Browser identifizieren

ns4 = (document.layers)? true:false
ie4 = (document.all)? true:false

if (ie4) {
        if (navigator.userAgent.indexOf('MSIE 5')>0) {
                ie5 = true;
                }
        else {
                ie5 = false;
                }
        }
else {
        ie5 = false;
        }

//Variablen deklarieren
var x = 0;
var y = 0;
var snow = 0;
var sw = 0;
var cnt = 0;

//"mover" nach durch oben bestimmten Browser festlegen

if ( (ns4) || (ie4) ) {
        if (ns4) mover = document.popOff
        if (ie4) mover = popOff.style
        document.onmousemove = mouseMove
        if (ns4) document.captureEvents(Event.MOUSEMOVE)
}


//Die Textbox erstellen

function pop(statustext,title, datum, text) {

        if ((datum) == ('') )
        {
        txt = "<TABLE WIDTH=150 BORDER=0 CELLPADDING=1 CELLSPACING=0 BGCOLOR=\"#000000\"><TR><TD><TABLE WIDTH=100% BORDER=0 CELLPADDING=0 CELLSPACING=0 BGCOLOR=\"#000080\"><TR><TD><B><FONT FACE=\"Verdana, Arial, Helvetica\" SIZE=\"-2\" COLOR=\"#FFFFFF\">"+title+"</FONT></TD></TR></TABLE><TABLE WIDTH=100% BORDER=0 CELLPADDING=1 CELLSPACING=0><TR><TD COLSPAN=2 BGCOLOR=\"#FFFFFF\"><FONT FACE=\"Arial, Verdana, Tahoma, Helvetica\" SIZE=\"1\" COLOR=\"#000000\">"+text+"</FONT></TD></TR></TABLE></TD></TR></TABLE>"
        }
        else
        {
        txt = "<TABLE WIDTH=150 BORDER=0 CELLPADDING=2 CELLSPACING=0 BGCOLOR=\"#000000\"><TR><TD><TABLE WIDTH=100% BORDER=0 CELLPADDING=0 CELLSPACING=0 BGCOLOR=\"#080884\"><TR><TD><B><FONT FACE=\"Arial, Helvetica\" SIZE=\"-1\" COLOR=\"#FFFFFF\">"+title+"</FONT></B></TD></TR></TABLE><TABLE WIDTH=100% BORDER=0 CELLPADDING=2 CELLSPACING=0><TR><TD COLSPAN=2 BGCOLOR=\"#FDD96B\"><FONT FACE=\"Verdana, Arial, Helvetica\" SIZE=\"2\" COLOR=\"#000000\">"+text+"</FONT></TD></TR></TABLE></TD></TR></TABLE>"
        }

        self.status = statustext;
        layerWrite(txt);
        if ( (ns4) || (ie4) ) {
                if (snow == 0) {
                        moveTo(mover,x-70,y+10);
                        showObject(mover);
                        snow = 1;
                        }
                }
}


//falls Maus vom Link weggeführt wird, Textbox löschen

function popoff() {
        self.status = '';
        if ( cnt >= 1 ) { sw = 0 };
        if ( (ns4) || (ie4) ) {
                if ( sw == 0 ) {
                        snow = 0;
                        hideObject(mover);
                } else {
                        cnt++;
                }
        }
}

function mouseMove(e) {
        if (ns4) {
                x=e.pageX;
                y=e.pageY;
                }
        if (ie4) {
                x=event.x;
                y=event.y;
                }
        if (ie5) {
                x=event.x+document.body.scrollLeft;
                y=event.y+document.body.scrollTop;
                }
        if (snow) {
                moveTo(mover,x-70,y+10);
                }
}

function layerWrite(txt) {
        if (ns4) {
                var lyr = document.popOff.document
                lyr.write(txt)
                lyr.close()
                }
        else if (ie4) {
                document.all["popOff"].innerHTML = txt
                }
}

function showObject(obj) {
        if (ns4) obj.visibility = "show"
        else if (ie4) obj.visibility = "visible"
}

function hideObject(obj) {
        if (ns4) obj.visibility = "hide"
        else if (ie4) obj.visibility = "hidden"
}

function moveTo(obj,xL,yL) {
        obj.left = xL
        obj.top = yL
}




//PopUp's für Funktionen-Links erstellen

function popup_info1()
{        d=""
        t="Zeigt die Übersicht der Artikel mit Beschreibungen zu Excel-Limitationen."
        pop(d,"Link: Liste",d,t);}

function popup_info2()
{        d=""
        t="Zeigt die Übersicht der Limitationen in Microsoft Excel."
        pop(d,"Link: Liste",d,t);}

function popup_info3()
{        d=""
        t="Öffnet die Hauptseite (Home) von XLimits."
        pop(d,"Link: XLimits",d,t);}

function popup_info4()
{        d=""
        t="Öffnet die Einstiegsseite des Webportals xlam - Excel and more!"
        pop(d,"Link: xlam",d,t);}

function popup_info5()
{        d=""
        t="Zeigt die Übersicht der Themenseiten zu Microsoft Excel."
        pop(d,"Link: Liste",d,t);}

function popup_info6()
{        d=""
        t="ID des Fachartikels."
        pop(d,"Artikel-ID",d,t);}

function popup_info7()
{        d=""
        t="."
        pop(d,"Link",d,t);}
// -->