function PrintContent(template)
    {
        var DocumentContainer = document.getElementById('wwinhoud');
        var WindowObject = window.open('', "TrackHistoryData", 
                              "width=740,height=325,top=200,left=250,toolbars=no,scrollbars=yes,status=no,resizable=no");
	Head ="<html><head><link rel=\"STYLESHEET\" type=\"text/css\" href=\"/templates/std/css/stylesheet.css\" /></head><body style=\"background-color:#ffffff;\">";
	End = "</body></html>";
        WindowObject.document.writeln(Head+DocumentContainer.innerHTML+End);
        WindowObject.document.close();
        WindowObject.focus();
        WindowObject.print();
        WindowObject.close();
    }
