
/** Layers Home **/

function overLayer(idLayer){
	document.getElementById(idLayer).className='inLayer';	
}

function outLayer(idLayer){
	document.getElementById(idLayer).className='outLayer';	
}

function goto(e){
	window.location = e;
}


/** Menú lateral **/

function overOption(option,clase){
	option.className=clase;
}

function outOption(option,clase){
	option.className=clase;
}


// EDITOR
function borrarFiltro() {
	document.getElementById("formSearch").buscador.value = "DELETING...";
	document.getElementById("formSearch").submit();
}

function deleteRecord (i) {
	if (confirm("¿Está seguro que desea borrar el registro?")) {
		window.location = 'delete?idNoticia='+i;
	}
}