


function Form_Validator(theForm)
{

var rr=0;


for (var i=0; i < theForm.code.length; i++)
   {
   if (theForm.code[i].checked)
      rr=rr+1;
   }

if(rr==0)
{
alert("Bitte Versandart auswählen!");
return (false);
}



if(theForm.adr2.checked==true)
{

if(theForm.addr1.value == "")
{
alert("Strasse & Hausnummer!");
theForm.addr1.focus();
return (false);
}
if(theForm.addr2.value == "")
{
alert("Adresszusatz!");
theForm.addr2.focus();
return (false);
}
if(theForm.addr3.value == "")
{
alert("Postleitzahl!");
theForm.addr3.focus();
return (false);
}
if(theForm.addr4.value == "")
{
alert("Stadt!");
theForm.addr4.focus();
return (false);
}

}



if(theForm.agb.checked==false)
{
alert("Bitte AGB´s lesen und akzeptieren!");
return (false);
}



}
