//  AUTHOR:        Bilton115	   >
//  CREATED:       6 May 1998      >
//  LAST MODIFIED: 4 October 2008  >
//  FILENAME:      footer.js       >

//  This is a function that writes out a footer that can be called from HTML pages
//  The footer will only need to be changed here

function printVirtualHeader()
	{
	document.write ('This is the header text <BR>');
	}	      

function printVirtualFooter()
	 {
	 document.write ('<BR> If you have any queries about this page please contact: <BR>');
	 document.write ('<BR> <ADDRESS> Webmaster : <A 						HREF="mailto:Bilton115@DELETE_THIS_hotmail.com
">Bilton115@DELETE_THIS_hotmail.com
</A><BR></ADDRESS>' );

	 var t = new Date(document.lastModified); 

	 document.write("<BR><I>Last Updated: "+document.lastModified+"</I>"); 
	 }


