function toggleAndalupedia() {
	az = document.getElementById('andalupedia');
	if (az) 
		if (az.style.display=="none") az.style.display="block";
		else	az.style.display="none";
}

function selectLetter(letter) {
	showPopWin('/andalupedia_popup.php?letra='+letter, 700, 500, returnRefresh);
	document.getElementById('popupTitle').innerHTML=letter;
}

function returnRefresh(returnVal) {	// El valor de retorno de submodal es la url que voy a mostrar. 
	location.href = returnVal;
}

