// JavaScript Document
function year()
{
	var d = new Date()
	var y = d.getFullYear()
	document.write('<span id="footerLeft">');
	document.write('Copyright &nbsp; &copy; &nbsp;');
	document.write(y);
	document.write('&nbsp; Evolution Sports Import.&nbsp;&nbsp;');
	document.write('</span>');
}

function powerBy()
{
 document.write('<span id="footerRight">&nbsp;&nbsp;This website is proudly Powered by <a href="http://www.square18.com" target="_blank">Square18</a>.&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span style="color: #FF9900;">Customer Service</span>&nbsp;&nbsp;&nbsp;Email: <a  style="" href="mailto:sales@kelme.com.au">sales@.kelme.com.au</a>&nbsp;&nbsp;&nbsp;&nbsp;Tel: 08 9379 2334</span>');
}

function validation()
{
	if(document.contact.name.value=="")
	{
		alert("Please input your Name.");
		document.contact.name.focus();
		return false
	}
	
	if(document.contact.state.value=="")
	{
		alert("Please input your State.");
		document.contact.state.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;
}