function Confirm_Form(text) {
    var is_confirmed = confirm(text);
	if (is_confirmed) {
		document.forms['list'].submit();
	}
}
/*
function ValidarFormulario(objeto){
	alert(document.frmSuscripcion.+getElementById("objeto")+.value);
	if(document.frmSuscripcion.+getElementById("objeto")+.value==""){
		return false;
	}
}
*/
function ValidarLongitud(objeto){
	if(objeto.b.value.length < 3){
		alert('La longitud mínima es de 3 caracteres');
		return false;
	}
}