// JavaScript Document
function year()
{
	var d = new Date()
	var y = d.getFullYear()
	document.write('<div id="footerLeft">');
	document.write('Copyright &nbsp; &copy; &nbsp;');
	document.write(y);
	document.write('&nbsp; Lyons Air Conditioning Services.&nbsp;&nbsp;');
	document.write('</div><div style="width:104px; height:44px; float: left;"><img src="images/arc.jpg"></div>');
}

function powerBy()
{
 document.write('<div id="footerRight">&nbsp;&nbsp;This website is proudly Powered by <a style="text-decoration: none;" href="http://www.square18.com" target="_blank">Square18</a>.</div>');
}

function validation()
{
	if(document.contact.name.value=="")
	{
		alert("Please input your Name.");
		document.contact.name.focus();
		return false
	}
	
	if(document.contact.phone.value=="")
	{
		alert("Please input your Phone.");
		document.contact.phone.focus();
		return false
	}
	
	if(document.contact.email.value=="")
	{
		alert("Please input your Email.");
		document.contact.email.focus();
		return false
	}
	
	if(document.contact.message.value=="")
	{
		alert("Please input your Message.");
		document.contact.message.focus();
		return false
	}
	
	return true;
}
