// JavaScript Document

function show_morecities(modulo,posicionx,posiciony){
document.getElementById(modulo).style.display='block';
document.getElementById(modulo).style.bottom=posicionx+'px';
document.getElementById(modulo).style.right=posiciony+'px';
}


function hide_morecities(modulo){
document.getElementById(modulo).style.display='none';
}