
	function validarFormCom(){
		
		gd_string = document.getElementById("gd_string");
		comentario = document.getElementById("comentario");
		retorno = true;
		if (comentario.value ==""){
			
			alert ("Debe ingrasar el comentario.");
			retorno=false;
		}
		
		if (gd_string.value ==""){
			
			alert ("Debe ingrasar el código de validación");
			retorno=false;
		}
		
		return retorno;
		
	}
