function printInfo(title,id) {
   win = window.open("", "printWindow", "width=400,height=500,scrollbars=1,status=1,toolbar=1,menubar=1");
   theHTML = document.getElementById(id).innerHTML;
   ok = theHTML.replace(/Back to Top/g,"");
   win.document.write("<html><head><title>"+title+"</title></head><body>");
   win.document.write(ok);
   win.document.write("</body>");
}