// This is the copyright and disclaimer text which is inserted into the footer globally.

// This is an ad-hoc function desisgned solely to pop up the disclaimer window.

function popUp(URL) {
	day = new Date();
	id = day.getTime();
	eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=460,height=350');");
}

// This writes html to the page containing the copyright notice and a link to the disclaimer pop-up.

document.write('     	<table cellpadding = 5> <tr> <td>');
document.write('     	<font size="1" align="middle" color=FFFFFF>					');
document.write('	Copyright &copy; 2006 JAMES GILL & Co. Ltd. &nbsp; All Rights Reserved. ');
document.write('	<A HREF="javascript:popUp(\'disclaimer.html\')" class="menu"> &nbsp; &nbsp; &nbsp; &nbsp; Legal Notice</A> 	');
document.write('	</font> </td> </tr></table> ');



