  function cancelar() {
	with (document.forms[0]) {
    		Nombre.value = "";
    		Empresa.value = "";
    		Direccion.value = "";
    		Telefono.value = "";
    		Contenido.value = "";
	}
  }

  function validar() {
	var URL = "briplas700.asp?";
	
	with (document.forms[0]) {
		URL = URL + 'd1=' + Nombre.value + '&d2=' + Empresa.value + '&d3=' + Direccion.value + '&d4=' + Telefono.value + '&d5=' + Contenido.value;
	}

	location.replace(URL);
  }
