function checkContactForm()
{
	var f = document.forms['yhteydenotto'];
	
	var error = "";
	
	if( f.nimi.value == '' ) error += ( error.length > 0 ? "," : "" ) + " nimi puuttuu";
	if( f.puhelin.value == '' ) error += ( error.length > 0 ? "," : "" ) + " puhelin puuttuu";
	if( f.email.value == '' ) error += ( error.length > 0 ? "," : "" ) + " email puuttuu";
	
	if( error.length > 0 ) 
	{
		document.getElementById('error').innerHTML = 'Virhe: ' + error;
		return false;
	}
	else
	{
		document.getElementById('error').innerHTML = '&nbsp;';
		return true;
	}
}
