function validateform(name, email, message)
{

	
	if (name == '')
	{
		document.getElementById('namelabel').style.color = '#a60101';
		document.getElementById('namecomment').style.color = '#a60101';
		document.getElementById('namecomment').innerHTML = ' - <b>I need a name!</b> ';
		return false;
	}

	if (email == '')
	{
		
		document.getElementById('emaillabel').style.color = '#a60101';
		document.getElementById('emailcomment').style.color = '#a60101';
		document.getElementById('emailcomment').innerHTML = ' - <b>I need an email to reply!</b> ';
		return false;
	}

	if (message == '')
	{
		
		document.getElementById('messagelabel').style.color = '#a60101';
		document.getElementById('messagecomment').style.color = '#a60101';
		document.getElementById('messagecomment').innerHTML = ' - <b>You need to tell me something..</b> ';
		return false;
	}

	
		 else {

		document.contactform.submit();

	}

}


function logout() {
	
	
	if(confirm('Are you sure you want to do this?'))
	window.location='home.php';
	else
	false

	
	
	
	
	
}