﻿function jsWindow(link)
{
    Fenster = window.open(link, "window", "width=870,height=600,screenX=0,screenY=0,scrollbars=yes,status=no,menubar=yes,location=no,toolbar=no,resizable=yes,dependent=no");
    Fenster.moveTo(20,20);
    Fenster.focus();
}

function zoom(link, titel)
{
    Fenster = window.open("Zoom.aspx?link=" + link + "&titel=" + titel, "Zoom", "width=768,height=558,screenX=0,screenY=0,scrollbars=no,status=no,menubar=yes,location=no,toolbar=no,resizable=yes,dependent=no");
    Fenster.moveTo(20,20);
    Fenster.focus();
}

function hilfeKlappen(id, richtung)
{
    var linkZu = "<a href=\"#\" onClick=\"javascript:hilfeKlappen(" + id + ", 'auf');return false;\" title=\"Tipp!\"><img src=\"/images/sym_hilfe_zu.gif\" alt=\"Tipp!\" border=\"0\"></a>"
    var linkAuf = "<a href=\"#\" onClick=\"javascript:hilfeKlappen(" + id + ", 'zu');return false;\" title=\"Tipp!\"><img src=\"/images/sym_hilfe_auf.gif\" alt=\"Tipp!\" border=\"0\"></a>"
    if(document.getElementById("text" + id))
    {
        if(richtung=="zu"){
            document.getElementById("text" + id).style.display = "none";
            document.getElementById("hilfeLink" + id).innerHTML = linkZu;
        }
        else{
            document.getElementById("text" + id).style.display = "block";
            document.getElementById("hilfeLink" + id).innerHTML = linkAuf;
        }
            
    }
}
