function validate(frm) {
    //
    // Check the Email field to see if any characters were entered
    //
    if (frm.nombre.value.length == 0)
    {
        alert("Por favor introduzca su nombre.")
        frm.nombre.focus()
        return false
    }
	if (frm.correoe.value.length == 0)
    {
        alert("Por favor introduzca su correo electronico.")
        frm.correoe.focus()
        return false
    }
	if (frm.telefono.value.length == 0)
    {
        alert("Por favor introduzca su numero telefonico.")
        frm.telefono.focus()
        return false
    }
}