function printPagina()
{
    if ($('#printContent'))
    {
        var content = $('<div>').append($('#printContent').clone().attr('width', '80%'));
        var headContent = '';
        var footerContent = '';
        var logoContent = '';
        var mainContent = '';
        if ($("head") && $("head").html() != null && $("head").html() != 'null') {
        	headContent = $("head").html();
        }
        if ($("td.footer") && $("td.footer").html() != null && $("td.footer").html() != 'null') {
        	footerContent = $("td.footer").html();
        }
        if ($('td.logoContent a') && $("td.logoContent a").html() != null && $("td.logoContent a").html() != 'null') {
        	logoContent = $('td.logoContent a').html();
        } else if ($('td.logoEuropoint a') && $("td.logoEuropoint a").html() != null && $("td.logoEuropoint a").html() != 'null') {
        	logoContent = $('td.logoEuropoint a').html();
        }
        if (content) {
        	mainContent = $(content).html();
        }
        var html = '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">' + "\n" + 
				   '<html xmlns="http://www.w3.org/1999/xhtml">' + "\n" + 
				   '<head>' + headContent + '<style type="text/css" media="all">html,body{padding: 10px;}</style>' + '</head>' + "\n" + '<body>' + "\n" + logoContent + "\n" + '<br />' + "\n" +
				   mainContent + "\n" + '<br />' + "\n<p>" + footerContent + "</p>\n" + '</body>' + "\n" + 
				   '</html>';
         
        //open new window
        var printWP = window.open("","printWebPart");
        printWP.document.open();
        //insert content
        printWP.document.write(html);
        printWP.document.close();
        //open print dialog
        printWP.print();
    }
}
