// i_tiempo.js v0.10

	var sMapa = "http://217.116.19.245/especiales/weather_foreca/spain.html"
	var sUrl = location.href;	
	if (sUrl.indexOf("europa")!=-1) {	
		sMapa = "http://217.116.19.245/especiales/weather_foreca/continent.html"
	}
	else if (sUrl.indexOf("mundo")!=-1) {	
		sMapa = "http://217.116.19.245/especiales/weather_foreca/world.html"		
	}

	var iframe = document.createElement("IFRAME");
	iframe.src=sMapa;
	iframe.frameBorder=0;
	iframe.scrolling = "no";
	iframe.width=450;
	iframe.height=320;
	document.getElementById("id_tiempo").appendChild(iframe);
	
