function fLimpiarBuscador (strIdioma){
	if (document.frmBuscar.cboModulo.value != 30){
		document.frmBuscar.cboModulo.value=0;
	}
	document.frmBuscar.txtFecha.value="";
	document.frmBuscar.cboIdioma.value=strIdioma;
}
//*************************************
function fValidarBuscar (){
	if (document.frmBuscar.txtFecha.value!=""){
		if(!fValidarDia(document.frmBuscar.txtFecha.value)){return;}
	}
	document.frmBuscar.submit();
}
//*************************************
function fValidarDatosDoc(intNuevo){
	if (document.frmNuevo.txtCodigo.value==""){alert(fM("IntroduzcaCodigo"));return;}
	if (document.frmNuevo.txtNombre.value==""){alert(fM("IntroduzcaNombre"));return;}
	if (intNuevo == "1"){
		if (document.frmNuevo.txtFichero.value==""){alert(fM("IntroduzcaFichero"));return;}
	}
	document.frmNuevo.submit();
}
//*************************************
function fAseguraBorrarDocumentos (){
	intCuantos=document.frmLista.Cuantos.value;
	i=0;
	sw=0;
	strDocumentos="";
	if (intCuantos=="1"){
		if (document.frmLista.chkDoc.checked){
			sw=1;
			strDocumentos = document.frmLista.chkDoc.value;
		}
	}else{
		while (i<intCuantos){
			if (document.frmLista.chkDoc[i].checked){
				if (sw==0){
					strDocumentos = document.frmLista.chkDoc[i].value;
				}else{
					strDocumentos = strDocumentos + "," + document.frmLista.chkDoc[i].value;
				}
				sw=1;
			}
			i++;
		}
	}
	document.frmLista.hdnDocumentos.value = strDocumentos;
	if (sw=="1"){
		if (confirm(fM("SeguroBorrarDocumentosIdioma"))){document.frmLista.submit();}
		else{return;}
	}else{alert(fM("SeleccioneDocumentosBorrar"));return;}	
}
//****************************************
function fAsegurarBorrarDoc (intCodDocumento,strIdioma){
	if (confirm(fM("SeguroBorrarDocumento"))){
		if (document.frmNuevo.cboModulo.value=="30"){
			location.href='index.php?pg=5&CodDocumento='+intCodDocumento+'&CodIdioma='+strIdioma+'&cboModulo=30';
		}else{
			location.href='index.php?pg=5&CodDocumento='+intCodDocumento+'&CodIdioma='+strIdioma;
		}
	}else{return;}
}
//****************************************
function fValidarOpcion (){
	if(document.frmNuevo.txtOpcion.value==""){alert(fM("IntroduzcaNombreOpcion"));return;}
	document.frmNuevo.submit();
}
//*************************************
function fAseguraBorrarOpciones (){
	intCuantos=document.frmLista.Cuantos.value;
	i=0;
	sw=0;
	strOpciones="";
	if (intCuantos=="1"){
		if (document.frmLista.chkOpcion.checked){
			sw=1;
			strOpciones = document.frmLista.chkOpcion.value;
		}
	}else{
		while (i<intCuantos){
			if (document.frmLista.chkOpcion[i].checked){
				if (sw==0){
					strOpciones = document.frmLista.chkOpcion[i].value;
				}else{
					strOpciones = strOpciones + "," + document.frmLista.chkOpcion[i].value;
				}
				sw=1;
			}
			i++;
		}
	}
	document.frmLista.hdnOpciones.value = strOpciones;
	if (sw=="1"){
		if (confirm(fM("SeguroBorrarOpcionesIdioma"))){document.frmLista.submit();}
		else{return;}
	}else{alert(fM("SeleccioneOpcionesBorrar"));return;}	
}
//**************************************
function fAsegurarBorrarOpcion(intCodOpcion,strIdioma){
	if (confirm(fM("SeguroBorrarOpcion"))){
		location.href='index.php?pg=10&CodOpcion='+intCodOpcion+'&CodIdioma='+strIdioma;
	}else{return;}
}
