function ValidateShippingForm()
	{
	if(document.getElementById("Island").value!=document.getElementById("IslandSelection").value && document.getElementById("BillingNShippingModeSame_Same").checked==true)
		{
		alert("La Zona eligida en Datos de cliente no coincide con lo que esta eligida en oferta");//alert("Island In Customer Details Is Different From Island Selected In Sales Pitch");
		return false;
		}
	if(document.getElementById("BillingNShippingModeSame_Diff").checked==true || document.getElementById("BillingNShippingModeDiff_Diff").checked==true)
		{
		if(document.getElementById("SFirstName").value=="")
			{
			alert("Por favor introduzca un 'Nombre' del recipiente");//alert("Shipping FirstName Value Is Blank.");
			return false;
			}
		if(document.getElementById("SLastName").value=="")
			{
			alert("Por favor introduzca un 'Apellido' del recipiente");//alert("Shipping LastName Value Is Blank.");
			return false;
			}
		if(document.getElementById("SAddress1").value=="")
			{
			alert("Por favor introduzca la 'Dirección 1' del recipiente");//alert("Shipping Address Line 1 Value Is Blank.");
			return false;
			}
		if(document.getElementById("SCity").value=="")
			{
			alert("Por favor introduzca la 'Población' del recipiente");//alert("Shipping City Value Is Blank.");
			return false;
			}
		if(document.getElementById("SState").value=="")
			{
			alert("Por favor introduzca la 'Provincia' del recipiente");//alert("Shipping State Value Is Blank.");
			return false;
			}
		if(document.getElementById("SCountry").value=="")
			{
			alert("Por favor introduzca la 'Región' del recipiente");//alert("Shipping Country Value Is Blank.");
			return false;
			}
		if(document.getElementById("SZipCode").value=="")
			{
			alert("Por favor introduzca el 'Código Postal' del recipiente");//alert("Shipping ZipCode Value Is Blank.");
			return false;
			}
		if(document.getElementById("SPhone").value=="" && document.getElementById("SMobile").value=="" )
			{
			alert("Por favor introduzca un número de Teléfono y/o un número de Móvil (Preferiblemente Móvil) del recipiente");//alert("Shipping Phone Value And Mobile Value Are Blank.");
			return false;
			}
		}
	if(document.getElementById("BillingNShippingModeDiff_Diff").checked==true)
		{
		if(document.getElementById("BNif").value=="")
			{
			alert("Por favor introduzca un 'NIF' para facturacion");//alert("Billing Nif Value Is Blank.");
			return false;
			}
		if(document.getElementById("BFirstName").value=="")
			{
			alert("Por favor introduzca un 'Nombre' para facturacion");//alert("Billing FirstName Value Is Blank.");
			return false;
			}
		if(document.getElementById("BLastName").value=="")
			{
			alert("Por favor introduzca un 'Apellido' para facturacion");//alert("Billing LastName Value Is Blank.");
			return false;
			}
		if(document.getElementById("BAddress1").value=="")
			{
			alert("Por favor introduzca la 'Dirección 1' para facturacion");//alert("Billing Address Value Is Blank.");
			return false;
			}
		if(document.getElementById("BCity").value=="")
			{
			alert("Por favor introduzca la 'Población' para facturacion");//alert("Billing City Value Is Blank.");
			return false;
			}
		if(document.getElementById("BState").value=="")
			{
			alert("Por favor introduzca la 'Provincia' para facturacion");//alert("Billing State Value Is Blank.");
			return false;
			}
		if(document.getElementById("BCountry").value=="")
			{
			alert("Por favor introduzca la 'Región' para facturacion");//alert("Billing Country Value Is Blank.");
			return false;
			}
		if(document.getElementById("BZipCode").value=="")
			{
			alert("Por favor introduzca el 'Código Postal' para facturacion");//alert("Billing ZipCode Value Is Blank.");
			return false;
			}
		if(document.getElementById("BPhone").value=="" && document.getElementById("BMobile").value=="" )
			{
			alert("Por favor introduzca un número de Teléfono y/o un número de Móvil (Preferiblemente Móvil) para facturacion");//alert("Billing Phone Value And Mobile Value Are Blank.");
			return false;
			}
		}
	return true;
	}
