function copyright (icon,tx1,tx2) {
   popup = window.open ("blank.htm","Copyright","width=460,height=160,left=250,top=250,toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no");
   popup.document.write ("<html>");
   popup.document.write ("<head>");
   popup.document.write ("<title>Copyright Information</title>");
   popup.document.write ("<link rel='stylesheet' type='text/css' href='tintro.css' />");
   popup.document.write ("</head>");
   popup.document.write ("<body class='cr'><div align='center'><center>");
   popup.document.write ("<table class='cr' cellspacing='8' cellpadding='0' style='width:80%; clear:both; margin:0.5em auto;'>");
   popup.document.write ("<tr>");
   popup.document.write ("<td><img src='../images/"+icon+".gif' width='64' border='0' /></td>");
   popup.document.write ("<td>"+tx1+"<br />"+tx2+"</td></tr>");
   popup.document.write ("</table>");
   popup.document.write ("<center><a href='#' onclick='self.close();'><img src='../images/close.jpg' border='0' title='Fenster schlie&szlig;en * Close window * Fermer la fen&ecirc;tre * Venster sluiten' /></a></center>");
   popup.document.write ("</body>");
   popup.document.write ("</html>");
   popup.focus();
}
