function checkContactForm()
{
	var f = document.forms['yhteydenotto'];
	
	var error = "";
	
	if( f.nimi.value == '' ) error += ( error.length > 0 ? "," : "" ) + " nimi puuttuu";
	if( f.puhelin.value == '' && f.email.value == '' ) error += ( error.length > 0 ? ",<br />" : "" ) + " puhelinnumero tai sähköpostiosoite puuttuu";
	
	if( error.length > 0 ) 
	{
		document.getElementById('error').innerHTML = error;
		return false;
	}
	else
	{
		document.getElementById('error').innerHTML = '&nbsp;';
		return true;
	}
}
