function display_change(x){
	if(document.getElementById('capa'+x).style.display != "block"){
		document.getElementById('capa'+x).style.display = "block";
	}else{
		document.getElementById('capa'+x).style.display = "none";
	}
}
function vacio(q)
{  
	for ( i = 0; i < q.length; i++ ) {  
		if ( q.charAt(i) != " " ) {  
			return true;  
		}  
	}  
	return false; 
}
function busqueda(form){
	var t1=form.concepto.value;
	if(vacio(t1) == false) {
		window.alert("Debe introducir alguna palabra para realizar la búsqueda");
		form.concepto.focus(); form.concepto.select(); return false;
	}
	return true;
}