if (document.getElementById('enlacequetiempo'))
{
var et_w={};
et_w.titulo=document.getElementById('tituloquetiempo');
et_w.h2=document.getElementById('hache2quetiempo');
et_w.enlace=document.getElementById('enlacequetiempo');
et_w.co=document.getElementById('contenidoquetiempox');
if(et_w.co){
while(et_w.co.firstChild){et_w.co.removeChild(et_w.co.firstChild)};
et_w.co.style.cssText='border:1px solid black;width:170px';
et_w.h2.style.cssText='padding:1px;display:block;margin:0px';
et_w.enlace.style.cssText='font-size:16px;color:#000000;text-decoration:none';
et_w.fr=document.createElement('iframe');
if (document.getElementById('urllocalidadquetiempo'))
	destino='http://www.quetiempo.es/widget/widget-'+document.getElementById('urllocalidadquetiempo').value+'.htm'
else
	destino='http://www.quetiempo.es/widget/widget.htm'
et_w.fr.src=destino;
et_w.fr.frameBorder=0;
et_w.fr.scrolling='no';
et_w.fr.width='170';
et_w.fr.height='290';
et_w.co.appendChild(et_w.fr);}}