Código:
if (identifi.substring(0,2) == "03") { if (document.frmCliente.tRuc.value = "") { window.alert("Error: Segun el identificador unico el campo RUC no debe estar vacio"); return false; }; if (document.frmCliente.tRazsoc.value = "") { window.alert("Error: Segun el identificador unico el campo Razon Social no debe estar vacio"); return false; }; if (document.frmCliente.tRep.value = "") { window.alert("Error: Segun el identificador unico el campo Flag Representante no debe estar vacio"); return false; }; if (document.frmCliente.tRlId.value = "") { window.alert("Error: Segun el identificador unico el campo REP.LEGAL: ID UNICO no debe estar vacio"); return false; }; if (document.frmCliente.tRlRazSoc.value = "") { window.alert("Error: Segun el identificador unico el campo REP.LEGAL: RAZON SOCIAL no debe estar vacio"); return false; }; if (document.frmCliente.tRlPat.value = "") { window.alert("Error: Segun el identificador unico el campo REP.LEGAL: APE.PATERNO no debe estar vacio"); return false; }; if (document.frmCliente.tRlMat.value = "") { window.alert("Error: Segun el identificador unico el campo REP.LEGAL: APE.MATERNO no debe estar vacio"); return false; }; if (document.frmCliente.tRlNom.value = "") { window.alert("Error: Segun el identificador unico el campo REP.LEGAL: NOMBRES no debe estar vacio"); return false; }; if (document.frmCliente.tPat.value != "") { window.alert("Error: Segun el identificador unico el campo PATERNO debe estar vacio"); return false; }; if (document.frmCliente.tMat.value != "") { window.alert("Error: Segun el identificador unico el campo MATERNO debe estar vacio"); return false; }; if (document.frmCliente.tNom.value != "") { window.alert("Error: Segun el identificador unico el campo NOMBRES debe estar vacio"); return false; }; };