function Laheta(form)
{
var yritys=form.yritys.value;

if(yritys.length<3)
{
alert("Et antanut yrityksen nimeä!");
form.yritys.focus();
return false;
}

var nimi=form.nimi.value;

if(nimi.length<2)
{
alert("Et antanut nimeäsi!");
form.nimi.focus();
return false;
}

var puhelin=form.puhelin.value;

if(puhelin.length<3)
{
alert("Puhelin numero puuttuu!");
form.puhelin.focus();
return false;
}

if(form.sahkoposti.value.indexOf('@', 0) == -1)
{
alert("Et antanut sähköpostiosoitettasi tai se on virheellinen!");
form.sahkoposti.focus();
return false;
}


}