function LM_Form() 
{
    var errors='',nm;
//  ---PERSÖNLICHEDATEN---   
    if (document.PEform.nombre.value =='') errors+='- Please insert your name!\n';
	if (document.PEform.apellidos.value =='') errors+='- Please insert your surname!\n';
	if (document.PEform.direccion.value =='') errors+='- Please insert your address!\n';
	if (document.PEform.edad.value =='') errors+='- Please insert your age!\n';
//	if ((PCform.telefono.value =='') && (PCform.email.value =='')&& (PCform.fax.value =='')) errors+='- F|r die Bestdtigung brauchen wir entweder Ihre Telefonnummer, Faxnummer oder E-Maildaresse\n';
	
//  ---FAHRZEUGTYP---
	if (document.PEform.vehiculo.value =='value') errors+='- You have forgoten to choose a vehicle!\n';
	
//  ---ANKUNFTSTAG-ABGABETAG+ZEIT---
	if (document.PEform.diarecoge.value =='Dia') errors+='- Day of collection missing!\n';
	if (document.PEform.mesrecoge.value =='Mes') errors+='- Month of collection missing!\n';
	if (document.PEform.anyorecoge.value =='Ano') errors+='- Year of collection  missing!\n';
	if (document.PEform.diaentrega.value =='Dia') errors+='- Day of return missing!\n';
	if (document.PEform.mesentrega.value =='Mes') errors+='- Month of return missing!\n';
	if (document.PEform.anyoentrega.value =='Ano') errors+='- Year of return missing!\n';
	if (document.PEform.horarecogida.value =='') errors+='- Time of collection missing!\n';
	if (document.PEform.horaentrega.value =='') errors+='- Time of return missing!\n';
	
	if(!document.PEform.recoge[0].checked && !document.PEform.recoge[1].checked && !document.PEform.recoge[2].checked && !document.PEform.recoge[3].checked && !document.PEform.recoge[4].checked) errors+='- You have not chosen a place of collection!\n';
    if ((!document.PEform.recoge[3].checked == false ) && (document.PEform.vuelo.value == '')) errors+='- Please fill in your flight number!\n';
    if ((!document.PEform.recoge[4].checked == false ) && (document.PEform.hotel.value == '')) errors+='- Please fill in your hotel!\n';
	
//  ---RÜCKGABEORT---	
	if (document.PEform.entregavehiculo.value =='Elija Uno') errors+='- Place of return missing!\n';
	
//  ---BESTÄTIGUNG---
    if (!document.PEform.confirma[0].checked && !document.PEform.confirma[1].checked && !document.PEform.confirma[2].checked) errors+='- How do you want us to confirm the reservation?\n';
	if ((!document.PEform.confirma[0].checked == false) && (document.PEform.email.value == '')) errors+='- To confirm the reservation we will need your E-Mail address!\n';
	if ((!document.PEform.confirma[1].checked == false) && (document.PEform.telefono.value == '')) errors+='- To confirm the reservation we will need your telefon number!\n';
	if ((!document.PEform.confirma[2].checked == false) && (document.PEform.fax.value == '')) errors+='- To confirm the reservation we will need your fax number!\n';
    
	if (errors) alert('\n'+errors);
	document.MM_returnValue = (errors == '');
}
//-->
