// JavaScript Document
function header()
{
	document.write('<tr>');
	document.write('<td width="1000" height="100"><table width="1000" height="95" border="0" cellpadding="0" cellspacing="0">');
	document.write('<tr>');
	document.write('<td width="30"></td>');
	document.write('<td><img src="images/logo.jpg"></td>');
	document.write('<td align="right"><img src="images/tel.jpg"></td>');
	document.write('<td width="25"></td>');
	document.write('</tr>');
	document.write('</table></td>');
	document.write('</tr>');
}

function footer()
{
	var d = new Date()
	var y = d.getFullYear()

	document.write('<tr><td width="1000" height="20"></td></tr>');
	document.write('<tr><td width="1000" height="1" bgcolor="#CCCCCC"></td></tr>');
	document.write('<tr>');
	document.write('<td width="1000" height="30" align="right"><table border="0" cellpadding="0" cellspacing="0">');
	document.write('<tr>');
	document.write('<td id="footer">Copyright &copy; ' + y + ' Westgyp</td>');
	document.write('<td width="10"></td>');
	document.write('<td id="footer">This website is proudly powered by <a href="http://www.square18.com" class="footer" target="_blank">Square18</a>.</td>');
	document.write('<td width="20"></td>');
	document.write('</tr>');
	document.write('</table></td>');
	document.write('</tr>');
}
