function checkForm()
{
	var f = document.forms['arvonta'];
	
	var error = "";
	
	if( f.market.value == 'valitse ' ) error += ( error.length > 0 ? "," : "" ) + " Market";
	if( f.nimi.value == '' ) error += ( error.length > 0 ? "," : "" ) + " Nimi";
	if( f.lahiosoite.value == '' ) error += ( error.length > 0 ? "," : "" ) + " Lähiosoite";
	if( f.postinumero.value == '' ) error += ( error.length > 0 ? "," : "" ) + " Postinumero";
	if( f.postitoimipaikka.value == '' ) error += ( error.length > 0 ? "," : "" ) + " Postitoimipaikka";
	if( f.puhelin.value == '' ) error += ( error.length > 0 ? "," : "" ) + " Puhelin";

	
	if( error.length > 0 ) 
	{
		document.getElementById('error').innerHTML = 'Tarkista seuraava(t):' + error;
		return false;
	}
	else
	{
		document.getElementById('error').innerHTML = '&nbsp;';
		return true;
	}
}

function checkFormPl()
{
	var f = document.forms['palaute'];
	
	var error = "";
	
	if( f.nimi.value == '' ) error += ( error.length > 0 ? "," : "" ) + " Nimi";
	if( f.lahiosoite.value == '' ) error += ( error.length > 0 ? "," : "" ) + " Lähiosoite";
	if( f.postinumero.value == '' ) error += ( error.length > 0 ? "," : "" ) + " Postinumero";
	if( f.postitoimipaikka.value == '' ) error += ( error.length > 0 ? "," : "" ) + " Postitoimipaikka";
	if( f.puhelin.value == '' ) error += ( error.length > 0 ? "," : "" ) + " Puhelin";
	if( f.palaute.value == '' ) error += ( error.length > 0 ? "," : "" ) + " Palaute";

	
	if( error.length > 0 ) 
	{
		document.getElementById('error').innerHTML = 'Tarkista seuraava(t):' + error;
		return false;
	}
	else
	{
		document.getElementById('error').innerHTML = '&nbsp;';
		return true;
	}
}
