// JavaScript Document
function year()
{
	var d = new Date()
	var y = d.getFullYear()
	document.write('<span id="footer">');
	document.write('Copyright &copy;&nbsp;');
	document.write(y);
	document.write('&nbsp;A.P.S. Rewinds & Sales. ');
	document.write('</span>');
}

function powerBy()
{
 document.write('<span id="footer">This website is proudly Powered by <a href="http://www.square18.com" class="footer" target="_blank">Square18</a>.</span>');
}

