function SendRegistration() {
                                    ofrm = document.getElementById("form1");
                                    if (ofrm.compania.value.toString().length == 0) {
                                        alert("Por favor digite compañia");
                                        ofrm.compania.focus();
                                        return;
                                    }
                                    if (ofrm.nombre.value.toString().length == 0) {
                                        alert("Por favor digite contacto");
                                        ofrm.nombre.focus();
                                        return;
                                    }
                                    if (ofrm.ciudad.value.toString().length == 0) {
                                        alert("Por favor digite su ciudad");
                                        ofrm.ciudad.focus();
                                        return;
                                    }
                                    if (ofrm.pais.value.toString().length == 0) {
                                        alert("Por favor digite su pais");
                                        ofrm.pais.focus();
                                        return;
                                    }
                                    if (!ofrm.telefono.value.toString().match("^[0-9]*$") || ofrm.telefono.value.toString().length < 7) {
                                        alert("Por favor digite un teléfono válido");
                                        ofrm.telefono.focus();
                                        return;
                                    }
                                    if (ofrm.direccion.value.toString().length == 0) {
                                        alert("Por favor digite su direccion");
                                        ofrm.direccion.focus();
                                        return;
                                    }
                                    if (ofrm.email.value.toString().length == 0) {
                                        alert("Por favor digite su E-mail");
                                        ofrm.email.focus();
                                        return;
                                    }
                                    if (ofrm.marca.value.toString().length == 0) {
                                        alert("Por favor digite marca");
                                        ofrm.marca.focus();
                                        return;
                                    }
                                    ofrm.submit();
                                }
