function Estoy(){
		var nom = navigator.appName;
		//alert(nom);
		if (nom == "Microsoft Internet Explorer")
		{
			if(Form1.R1(0).checked==true)
				Form1.tipo.value=0;
			else
				Form1.tipo.value=1;
				
			if (Form1.txtnombre.value=="")
				alert("Debe Ingresar el nombre");
			else {
				if (Form1.txtapellido.value=="") 
					alert("Debe ingresar el apellido");
				else {
						if (Form1.txtcedula.value=="") 
							alert("Debe Ingresar la cedula");
							else {
								if (Form1.txtindustria.options(Form1.txtindustria.selectedIndex).text.indexOf("Seleccione")!=-1) 
									alert("Debe Ingresar el tipo de industria para la cual labora");
								else {
									if (Form1.txttipoproducto.options(Form1.txttipoproducto.selectedIndex).text.indexOf("Seleccione")!=-1) 
										alert("Debe escoger el producto en que esta interesado");
									else {
										if (Form1.txtCiudad.options(Form1.txtCiudad.selectedIndex).text.indexOf("Seleccione")!=-1) 
											alert("Debe Escoger la ciudad");
										else {
											if (Form1.txtmediocontacto.options(Form1.txtmediocontacto.selectedIndex).text.indexOf("Seleccione")!=-1) 
												alert("Debe Ingresar el medio de contacto");
											else {
												if (Form1.txtotratelefono.value=="") 
													alert("Debe Ingresar el Telefono para contacto");
												else{
													if (Form1.txtcorreo.value=="") 
														alert("Debe Ingresar la dirección de correo electronico");
													else{
														Form1.submit();
													}
												}
											}
										}	
									}	
								}
							}
						}
					}
		}
		else if (nom == "Netscape")
		{
			if (Form1.txtnombre.value=="")
					alert("Debe Ingresar el nombre");
				else {
					if (Form1.txtapellido.value=="") 
						alert("Debe ingresar el apellido");
					else {
							if (Form1.txtcedula.value=="") 
								alert("Debe Ingresar la cedula");
								else {
								var cmb1=document.getElementById("txtindustria");
								var cmb2=document.getElementById("txtCiudad");
								var cmb3=document.getElementById("txtmediocontacto");
								var cmb4=document.getElementById("txttipoproducto");
									if (cmb1.options[cmb1.selectedIndex].value==0) 
										alert("Debe Elegir el tipo de industria para la cual labora")
									else {
										if (cmb4.options[cmb4.selectedIndex].value==0) 
											alert("Debe elegir el Tipo de Producto en el que esta interesado")
										else {
											if (cmb2.options[cmb2.selectedIndex].value==0) 
												alert("Debe elegir la Ciudad")
											else {
												if (cmb3.options[cmb3.selectedIndex].value==0) 
													alert("Debe elegir el Medio de Contacto")
												else {
													if (Form1.txtotratelefono.value=="") 
														alert("Debe Ingresar el Telefono para contacto");
													else{
														if (Form1.txtcorreo.value=="") 
															alert("Debe Ingresar la dirección de correo electronico");
														else{
															Form1.submit();
														}
													}
												}
											}	
										}	
									}
								}
							}
						}
		}
				
	}
