
function checkform()
{
var xFick=true;

if(!profil(document.send.plz,1)){xFick=false;}
if(!profil(document.send.stadt,2)){xFick=false;}
if(!profil(document.send.strasse,3)){xFick=false;}
if(!profil(document.send.email,4)){xFick=false;}

document.send.akt.value='30';
return xFick;
}
  
function profil(rObj,x) {
	
if(rObj.value=='' || (x==1 && document.send.land.value==1 && rObj.value.length!=4)){
if(x==1){
document.getElementById("f1").style.color="red";
document.getElementById("s1").style.visibility="visible";}
else if(x==2){
document.getElementById("f2").style.color="red";
document.getElementById("s2").style.visibility="visible";}
else if(x==3){
document.getElementById("f3").style.color="red";
document.getElementById("s3").style.visibility="visible";}
else if(x==4){
document.getElementById("f4").style.color="red";
document.getElementById("s4").style.visibility="visible";}
rObj.focus();
return false;
}
else if (x==6 && (rObj.value.indexOf ('@',0) == -1 || rObj.value.indexOf ('.',0) == -1 || rObj.value=='')) 
{
document.getElementById("f8").style.color="red";
document.getElementById("s8").style.visibility="visible";

return false;
}

return true;}