
function FGM_Validate_4CC6621AF8761464C12575B40041B736()
{
          var v="";
          
v=getFieldValue(document.SWM_Contact.LastName,"Text");
if(v =="" )
{
alert("Bitte geben Sie Ihren Nachnamen ein!");
document.SWM_Contact.LastName.focus();
return false;
}

v=getFieldValue(document.SWM_Contact.Country,"Dropdown");
if(v =="" )
{
alert("Bitte wählen Sie ein Land aus.");
document.SWM_Contact.Country.focus();
return false;
}

v=getFieldValue(document.SWM_Contact.InternetAddress,"Mail");
if(v =="" )
{
alert("Bitte geben Sie eine gültige Emailadresse ein!");
document.SWM_Contact.InternetAddress.focus();
return false;
}

          
          
          return true;
}


