 function PrintContent(historyListPanel)
    {
        var DocumentContainer = document.getElementById(historyListPanel);
        var WindowObject = window.open('', "TrackHistoryData", 
                              "toolbars=no,scrollbars=yes,status=no,resizable=no");
        WindowObject.document.writeln(DocumentContainer.innerHTML);
        WindowObject.document.close();
        WindowObject.focus();
        WindowObject.print();
        WindowObject.close();
    }
