function getCopyright()
{
	var theText = new String("");
	
	theText = theText + '<table width="95%" align="center">';
	theText = theText + '    <tr>';
	theText = theText + '	    <td align="center">';
	theText = theText + '          <font size="-1">';
	theText = theText + '               &copy; 1995-2005 HMCS Inc, DBA Education Programs. All rights reserved.';
	theText = theText + '               &nbsp;All trademarks, service marks and logos are owned by or registered to HMCS Inc., or Education Programs.';
	theText = theText + '               &nbsp;All other product or brand names are trademarks of their respective owners.</font>';
	theText = theText + '       </td>';
	theText = theText + '	 </tr>';	
	theText = theText + '    <tr>';
	theText = theText + '	    <td width="100%" align="center">';
	theText = theText + '       </td>';
	theText = theText + '	 </tr>';
	theText = theText + '</table>';
	
	document.write(theText);

}

