// --------------------------
// CUFON FONT-REPLACEMENT
Cufon.replace(document.getElementById("replace_headline")); // sichere Variante bei IDs im IE6 und IE7

// ini
printheader = '<a href="/index.html" id="logo_head" title="PRONATAL PLUS">PRONATAL PLUS</a>';

// functions
function druckansicht () {
    document.forms["drucken"].submit();
}

function drucken () {
    document.getElementById('head').innerHTML=printheader;
    document.getElementById('left').style.display='none';
    document.getElementById('right').style.display='none';
    document.getElementById('footer').style.display='none';
    document.getElementById('container').style.overflow='hidden';
    document.getElementById('container').style.width='520px';
    document.getElementById('mid').style.overflow='hidden';
    document.getElementById('mid').style.width='520px';
    document.getElementById('container_bottom').style.overflow='hidden';
    document.getElementById('container_bottom').style.width='538px';
    window.print();
    
}
