function CallPrint(strid){<!-- Grabs the area selected from div tag ...-->var prtContent = document.getElementById(strid);var WinPrint = window.open('','','letf=10,top=10,width="450",height="250",toolbar=1,scrollbars=1,status=0');<!-- Applying the css and title for the print document...-->WinPrint.document.open();WinPrint.document.write("<html><head><LINK rel=\"stylesheet\" type\"text/css\" href=\"styles/labelexpress.css\" media=\"print\"><LINK rel=\"stylesheet\" type\"text/css\" href=\"styles/labelexpress.css\" media=\"screen\"></head><body><img src=\"images/logo_print.jpg\"><br><br><span class=\"text_normal\">T: 020 8683 3000 | E: enquiries@label-express.co.uk<br><br>");WinPrint.document.write(prtContent.innerHTML);WinPrint.document.write("</span></body></html>");WinPrint.document.close();WinPrint.focus();WinPrint.print();WinPrint.close();}var min=8;var max=18;function increaseFontSize() {   var p = document.getElementsByTagName('td');   for(i=0;i<p.length;i++) {      if(p[i].style.fontSize) {         var s = parseInt(p[i].style.fontSize.replace("px",""));      } else {         var s = 12;      }      if(s!=max) {         s += 1;      }      p[i].style.fontSize = s+"px"   }}function decreaseFontSize() {   var p = document.getElementsByTagName('td');   for(i=0;i<p.length;i++) {      if(p[i].style.fontSize) {         var s = parseInt(p[i].style.fontSize.replace("px",""));      } else {         var s = 10;      }      if(s!=min) {         s -= 1;      }      p[i].style.fontSize = s+"px"   }   }