﻿/*Schriftgroesse -- BEISPIEL */
function changeSize(newSize){
    
    var size = document.getElementById('content_inner').className;
    
    if(newSize == 'plus'){
        if(size == 'normal'){
            document.getElementById('content_inner').className = 'big';
        }
        if(size == 'big'){
            document.getElementById('content_inner').className = 'bigger';
        }
    }
    if(newSize == 'minus'){
        if(size == 'big'){
            document.getElementById('content_inner').className = 'normal';
        }
        if(size == 'bigger'){
            document.getElementById('content_inner').className = 'big';
        }
    }
}
/*Printing*/
function printthispage(){ 
    
    var sOption      = "toolbar=no,location=no,directories=no,menubar=no,scrollbars=yes,width=660,height=600,left=100,top=25"; 
    var sWinHTML     = document.getElementById('content').innerHTML;
    var strBereich   = document.title;
    var strBody      = document.body.className;    
    var winprint     = window.open("","",sOption);
    
    winprint.document.open(); 
    winprint.document.write('<html style="background-image: none; background-color: #fff;"><title>' + document.title + '</title><link rel="stylesheet" type="text/css" href="/en/screen.css" />');
    winprint.document.write('<body class="'+strBody+'" style="background-image: none; background-color: #fff;" onload="window.print();">'); 
    winprint.document.write('<div style="width: 640px; height: 128px; background: url(/en/system_images/print_elements.png) 0 0;"></div>');
    winprint.document.write('<div style="display: none;">' + strBereich + '</div>');
    winprint.document.write('<div id="content" class="normal" style="background: #fff; float: none;>');
    winprint.document.write('<div id="content_inner">'+sWinHTML+'</div>');
    winprint.document.write('<div id="footer" style="margin-top: 40px;"><div id="footer_inner"><span style="color: #fff; font-size: 11px; line-height: 18px;"><B>DERTOUR GmbH &amp; Co. KG</B> | Emil-von-Behring-Stra&szlig;e 6 | 60439 Frankfurt</span></div></div>');
    winprint.document.write('</div></body></html>');
    winprint.document.close(); 
    winprint.focus(); 
}


