function header()
{
return (
"<img src='images/banner.gif' width='500' height='30'><br/>" +
"<a href='index.html'>Home</a> | " +
"<a href='about.html'>About</a> | " +
"<a href='news.html'>News</a> | " +
"<a href='images.html'> Images</a> | " +
"<a href='message.html'>Message Board</a> | " +
"<a href='contact.html'>Contact</a>| <a href='senior.html'>Senior</a> | " +
"<a href='youth.html'> Youth</a> | " +
"<a href='trophies.html'> Trophies</a>");
}

function footer()
{
return (
"<font size='-2'>Copyright &copy; 2005 genesisfc.co.uk. All rights reserved. " +
"<u><a href='http://www.uglyenterprise.com' target='_blank'>Ugly Web Design 2005. </a></u><br/>" +
"Requires Flash and uses JavaScript, best viewed at 1024x768 with IE6+</font>");
}

function popup(url) {
msg=window.open("","displayWindow", "toolbar=no,width=400px,height=400px,directories=no", "status=no,scrollbars=no,resize=no,menubar=no")
msg.focus()
msg.document.open()
msg.document.write(
	"<html><head><link rel='stylesheet' href='style.css' type='text/css'></head>" +
	"<body bgcolor='#ff3333' topmargin='0px' leftmargin='0px'>" +
	"<table width='100%' height='100%'><tr><td align='center' valign='middle'>" +
	"<img src='" + url + "' class='border'></img><br/>" +
	"<a href='javascript:parent.close()'> close window </a>" +
	"</td></tr></table>" +
	"</body></html>"
)
msg.document.close()
}

