<!-- 

function goWin(arg)
{
    options = "location=0,directories=0,menubar=0,copyhistory=0,resizable=1,status=0,scrollbars=1,toolbar=1,width=450,height=330";
    win2 = window.open("", "ham",options);
    win2.location.href = arg;  
    if(navigator.appVersion.indexOf("MSIE 3") < 0)
        win2.focus();
}


function MM_openBrWindow(theURL,winName,features)
{
    window.open(theURL,winName,features);
}


favoritenanzahl = 0;


function favoriten(img_name, img_on, img_off)
{
    var img_status = document.images[img_name].src;
  
    if(img_status.indexOf(img_on) < 0)
    {
        document.images[img_name].src = img_on;
        favoritenanzahl++;
    }
    else
    {
        document.images[img_name].src = img_off;
        favoritenanzahl--;
    }
    if(favoritenanzahl<0)favoritenanzahl=0;

    if(document.all || document.getElementById) // Guter oder schlechter Browser
    {
        var favorit = "en";
        if(favoritenanzahl == 1) favorit = "";
        document.getElementById("divfavoriten").innerHTML = "+++ " + favoritenanzahl + " Favorit" + favorit + " ausgew&auml;hlt +++";
    } //end of: if(document.all)
}

// -->
