// define a new class called event (defined by its constructor)

function mailFormat(user,isp) {
	var text = '<a href="mailto:' + user + '@' + isp + '">';
	document.write(text);
}

function copyright() {
	var text = '';
  	text    += '<p align=center><font size="-1">All the information presented here is from the public domain. ';
  	text    += 'It is provided on an entirely voluntary basis and thus may not be ';
  	text    += 'used for any commercial gain without written permission. ';
  	text    += 'I apologise if there are any errors or omissions - if you do find ';
  	text    += 'any or wish to supply me with additional information please <a href="mailto:brian@fiskfamily.org.uk">e-mail</a> me.</font><p>';
	return text;
}

function drawTitle() {
	var text = '';
	var images = '../../images/';
	text    += '<table border="0"><tr>';
    text    += '<td><p align="center"><img src="' + images + 'ffh.gif" alt="ffh.gif (2092 bytes)" WIDTH="500" HEIGHT="60"> <br>';
    text    += '<font size="2">This site is owned by <a href="mailto:brian@fiskfamily.org.uk">Brian P E Fisk </a>.';
	text    += '</td>';
  	text    += '</tr></font></table>';
	text    += copyright();
	text    += '<hr>';
	return text;
}

function drawClosing() {
	var text = '';
	var images = '../../images/';

  	text    += '<P align=center>[<A HREF=searchFisks.php>index page</A>]';
  	text    += '[<A HREF="http://brianfisk.net">my home page</A>]';
  	text    += '[<A HREF=http://homepages.rootsweb.com/~bpefisk/fh/famhist.htm>FISK(E) links</A>]';
//	text    += '<CENTER><HR align=center width=90% size=3>';
//	text    += copyright();
	return text;
}

