  function printPage(elId)
  {
   var windowOptions = 'toolbar=no,location=no,directories=yes,menubar=no,';
   windowOptions += 'scrollbars=yes,width=700,height=300,left=100,top=25';

   var printContent = document.getElementById(elId).innerHTML;
    var str;
		var page_objects = document.getElementById(elId).getElementsByTagName('INPUT');
    // set inputs to checked if original are checked
		for (j=0; j < page_objects.length; j++) {
      if (page_objects[j].checked) {
        str = 'name="' + page_objects[j].name + '" value="' + page_objects[j].value + '"';
        printContent = printContent.replace(str,str+' checked="checked"');
      }
    }
   var windowRef = window.open('about:blank', 'Print', windowOptions);
   windowRef.document.open();
   windowRef.document.write(printContent);
   windowRef.document.close();
   windowRef.focus();
   windowRef.print();
   windowRef.close();
  }