function objetoAjax(){
	var xmlhttp=false;
	try {
		xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
	} catch (e) {
		try {
		   xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
		} catch (E) {
			xmlhttp = false;
  		}
	}

	if (!xmlhttp && typeof XMLHttpRequest!='undefined') {
		xmlhttp = new XMLHttpRequest();
	}
	return xmlhttp;

}

function clima_ciudad(ciudad)
{
	divClima = document.getElementById('div_clima2');
	divClima.innerHTML= '<iframe id="iframe_clima" allowtransparency="true" marginwidth="0" marginheight="0" hspace="0" vspace="0" frameborder="0" scrolling="no" src="clima/clima.php?id='+ciudad+'" height="100px" width="224px"></iframe>';
	
	div = document.getElementById('clima_sel2');
	div.style.display = 'none';
}

function ver_lista_ciudades()
{
	div = document.getElementById('clima_sel2');
	div.style.display = '';
}

function ocultar_lista_ciudades()
{
	div = document.getElementById('clima_sel2');
	div.style.display = 'none';
}

