function printContent(div_id)
{
var DocumentContainer = document.getElementById(div_id);
var html = '<html><head>'+
               '<link href="/Theme/Superliga/css/template.css" rel="stylesheet" type="text/css" />'+
               '<script type="text/javascript" src="/Theme/Superliga/javascripts/disablelinks.js"></script></head><body>'+
               DocumentContainer.innerHTML+
               '</body></html>';

    var WindowObject = window.open("", "PrintWindow",
    "width=670,height=650,top=50,left=50,toolbars=no,scrollbars=yes,status=no,resizable=yes");
    WindowObject.document.writeln(html);
    WindowObject.document.close();
    WindowObject.focus();
    WindowObject.print();
    //WindowObject.close();
    //document.getElementById('print_link').style.display='block';
}



