// 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; Muhling Marine&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>.</span>');
}

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;
}