function resize_fixed(w,h){

    // nichts zu tun, diese darstellungsform hat fixe hoehe
    return; 

}

function resize_dynheight(w){
    var b = document.getElementsByTagName("body")[0];

    if( b.scrollheight == 0) return;

    var y = b.scrollHeight + 20;
    var aboidgleich = location.search.match(/aboid=[0-9]+/);

    try {
        if( parent.location ) {
            var url = 'set_abo_ypx.php?' + aboidgleich + "&y=" + y;
            var myAjax = new parent.Ajax.Request( url );

            console.log("setzte YPX von abo " + aboidgleich + " auf " + y);
            
        }
    } catch(e) { 
    }

}
