function PrintContent()
    {
        var DocumentContainer = document.getElementById('mcontent');
        var WindowObject = window.open('', "pageContent", 
                              "width=740,height=325,top=200,left=250,toolbars=no,scrollbars=yes,status=no,resizable=no");

        WindowObject.document.writeln("<html xmlns='http://www.w3.org/1999/xhtml' xml:lang='en' lang='en'><head><meta http-equiv='Content-Type' content='text/html; charset=ISO-8859-1' /><link rel='stylesheet' type='text/css' href='css/ttm.css'/><link rel='stylesheet' type='text/css' href='css/nav.css'/></head>");
        WindowObject.document.writeln(DocumentContainer.innerHTML);
        WindowObject.document.getElementById('info_bar').style.display='none';
        WindowObject.document.getElementById('contentcol2').style.display='none';
        WindowObject.document.getElementById('pagetitle').style.display='none';
        WindowObject.document.getElementById('contentprinter').style.display='none';
        WindowObject.document.close();
        WindowObject.focus();
        WindowObject.print();
        WindowObject.close();
    }