// JavaScript Document

/* Login Popup */

function popup() {
window.open("login/login.html","","height=600, width=800, status = no, menubar = no, toolbar = no, scrollbars = yes, location = no, resizable = no, titlebar = no, fullscreen = no, top = 50, left = 50");
}

<!-- 

/* ticker script */

var max=0;
function textlist()
{
max=textlist.arguments.length;
for (i=0; i<max; i++)
this[i]=textlist.arguments[i];
}

tl=new textlist
(
"Wir sind zertifizierte Gebäudeenergieberater der Handwerkskammer...     ",
"...und autorisierter SunPower-Partner und bieten...	",
"...das zur Zeit leistungsstärkste PV-Modul an!      "
);

var x=0; pos=0;
var l=tl[0].length;

function textticker()
{
        document.form1.textfeld.value=tl[x].substring(0,pos)+" ";

        if(pos++==l)
        {
                pos=0;
                setTimeout("textticker()",1000);
                x++;
                if(x==max)
                        x=0;
                l=tl[x].length;
        } else
                setTimeout("textticker()",50);
}


/* ticker script */

-->


