
function marcar_ciudad(img) {
	var imagen = document.getElementById("mapa_ciudades_mapa");
	imagen.src = 'imagenes/mapa_ciudades/' + img + '.gif';
	var id_li = ""+img;
	var provincia = document.getElementById(img);
	provincia.style.textDecoration = "underline";
	provincia.style.backgroundColor = "#990000";
	provincia.style.color = "white";
	//provincia.style.fontWeight = "bold";
	
	var mapa=document.getElementById("mapa_ciudades");
	mapa.style.width=500;
	mapa.style.height=600;
}

function desmarcar_ciudad(img) {
	var imagen = document.getElementById("mapa_ciudades_mapa");
	imagen.src = 'imagenes/mapa_ciudades/mapa_ciudades_transparente.gif';
	var id_li = ""+img;
	var provincia = document.getElementById(img);
	provincia.style.textDecoration = "none";
	provincia.style.backgroundColor = "#ffffff";
	provincia.style.color = "#990000";
	//provincia.style.fontWeight = "normal";
	
	var mapa=document.getelementById("mapa_ciudades");
	mapa.style.width=500;
	mapa.style.height=600;
}