function printResult(tname){

var tableDetails = document.getElementById(tname).innerHTML;

companyTitle = "<div align='center'><img src='../images/logo_black.gif'><br>International Security<br> & Defence Systems</div>";

var expresion = '<IMG height=10 src="../images/title_cursor.gif" width=18 align=absMiddle>';




win = window.open('', 'printPage', 'height=340, width=600, scrollbars=1, toolbar=1');


win.document.write("<html>");
win.document.write("<head>");
win.document.write("<title>ISDS - International Security & Defence Systems </title>");
win.document.write("</head>");
win.document.write("<body leftmargin='10' topmargin='10' marginwidth='10' marginheight='10'>");
win.document.write(companyTitle);
win.document.write('<table width=100% align="center">');
win.document.write('<tr><td align="center">');
win.document.write(tableDetails);
win.document.write('</td><tr>');
win.document.write('</table>');

win.document.write("<script> print(); </script>");
win.document.write("</body>");
win.document.write("</html>");
win.document.body.style.fontFamily="Arial";
win.self.print(); 


}	 
