function initonlineshop()
{
alert("start");
window.document.getElementById('anzeige1').style.filter ="blendTrans(duration=20)";
window.document.getElementById('anzeige1').filters.blendTrans.apply();
window.document.getElementById('anzeige1').style.visibility ="visible";
window.document.getElementById('anzeige1').filters.blendTrans.play();
}

function init(){

alert(innerHeight-778+'px');

footerheight = innerHeight-778+'px';

window.document.getElementById('footerdiv').style.height = footerheight;
}

function settargetlinks() {
    if (!document.getElementsByTagName) {
        return null;
    }
    var tags = document.getElementsByTagName("a");
    for (var f=0;f < tags.length;f++) {
    
        var tag = tags[f];
        if (tag.getAttribute("href") && tag.getAttribute("rel") == "blank") {
            tag.setAttribute("target", "blank");
        }
    }
}

