/*
 * Filename : print_page.php
 * Created on : 5-ott-2011, 17.07.33
 * Author : Pixellers (info@pixellers.com)
 * 
 * Description:
 * { insert description here } 
 * 
 */


function print_page() {
    
    document.write('<html><head>'+
        '<link rel="stylesheet" href="css/verovolley.css" type="text/css" />'+
        '<!--[if IE]>'+
        '<link rel="stylesheet" type="text/css" href="css/verovolley_ie.css" />'+
        '<![endif]-->'+
        '</head><body>'+
        '<img src="img/logo_verovolley.png" /><br /><br />'+
        $('#infopagina').html()+
        '</body></html>');
    
    $('body').css('background', 'none');
    $('body').css('padding', '30px 30px 30px 30px');
    
    window.print();
}
