function mapOver(state)
{
	var theImage = document.getElementById("map");
	
	if(theImage.src.indexOf("map.gif") == -1)
	{
		theImage.src = "/media/build/map/map.gif";
	}
	else
	{
		if(state == "wa")
		{
			theImage.src='/media/build/map/map_wa.gif';	
		}
		if(state == "nt")
		{
			theImage.src='/media/build/map/map_nt.gif';	
		}
		if(state == "qld")
		{
			theImage.src='/media/build/map/map_qld.gif';	
		}
		if(state == "nsw")
		{
			theImage.src='/media/build/map/map_nsw.gif';	
		}
		if(state == "act")
		{
			theImage.src='/media/build/map/map_act.gif';	
		}
		if(state == "vic")
		{
			theImage.src='/media/build/map/map_vic.gif';	
		}
		if(state == "tas")
		{
			theImage.src='/media/build/map/map_tas.gif';	
		}
		if(state == "sa")
		{
			theImage.src='/media/build/map/map_sa.gif';	
		}
	}								
}

function validateContact(theForm)
{
	valid = true;
	message = "So that we can help you with your enquiry, please enter your: \n\n";
	if(theForm.elements["firstname"].value == "")
	{
		message += "First name\n";
		valid = false;
	}
	if(theForm.elements["surname"].value == "")
	{
		message += "Surname\n";
		valid = false;
	}
	if(theForm.elements["phone"].value == "")
	{
		message += "Phone number\n";
		valid = false;
	}
	if(valid)
	{
		return true;
	}
	else
	{
		alert(message);
		return false;
	}
}