function checkKilpailuForm()
{
	var error = 0;
	
	var missa = document.getElementById('where');
	var nimi = document.getElementById('name');
	var puhelin = document.getElementById('phone');
	var sahkoposti = document.getElementById('email');
	
	nimi.style.background = '#ffffff';
	puhelin.style.background = '#ffffff';
	sahkoposti.style.background = '#ffffff';
	
	if(missa.value == '' )  { error ++;  missa.style.background = '#ffe6e7'; }
	if(nimi.value == '' )  { error ++;  nimi.style.background = '#ffe6e7'; }
	if(puhelin.value == '' )  { error ++;  puhelin.style.background = '#ffe6e7'; }
	if(sahkoposti.value == '' )  { error ++;  sahkoposti.style.background = '#ffe6e7'; }
	
	
	if( error > 0 ) 
	{
		return false;
	}
	else
	{
		return true;
	}
}
function checkKilpailuForm2()
{
	var error = 0;
	
	var missa = document.getElementById('what');
	var nimi = document.getElementById('name');
	var puhelin = document.getElementById('phone');
	var sahkoposti = document.getElementById('email');
	
	nimi.style.background = '#ffffff';
	puhelin.style.background = '#ffffff';
	sahkoposti.style.background = '#ffffff';
	
	if(missa.value == '' )  { error ++;  missa.style.background = '#ffe6e7'; }
	if(nimi.value == '' )  { error ++;  nimi.style.background = '#ffe6e7'; }
	if(puhelin.value == '' )  { error ++;  puhelin.style.background = '#ffe6e7'; }
	if(sahkoposti.value == '' )  { error ++;  sahkoposti.style.background = '#ffe6e7'; }
	
	
	if( error > 0 ) 
	{
		return false;
	}
	else
	{
		return true;
	}
}
function checkSearhcForm()
{
	var keywords = document.getElementById('keywords');
	
	keywords.style.background = "white";
	
	if( keywords.value != '' ) return true;
	else {
		keywords.style.background = "#ffedf2";
		return false;
	}
}
