// 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;OCCA');
	document.write('</span>');
}

function OCCA()
{
 document.write('<span id="footer">,OCCA.</span>');
}

function designBy()
{
 document.write('<span id="footer">This website is designed by OCCA</span>');
}

function powerBy()
{
 document.write('<span id="footer">and proudly Powered by <a href="http://www.square18.com" class="p" target="_blank">Square18</a>.</span>');
}

