function ELM(id,doc)
{if(typeof(doc)=='undefined')doc=document;return doc.getElementById(id);}
function DISABLE(id,option)
{var elm=ELM(id);var bDisabled;switch(option)
{case true:bDisabled=true;break;case false:bDisabled=false;break;case'switch':bDisabled=!elm.disabled;break;}
elm.disabled=bDisabled;return bDisabled;}
function DISPLAY(id,option)
{var elm=ELM(id);var bDisplay;switch(option)
{case'1':case true:option='block';bDisplay=true;break;case'0':case false:option='none';bDisplay=false;break;case'block':case'inline':case'table-row':bDisplay=true;break;case'none':bDisplay=false;break;case'switch':if(elm.style.display=='none')
{option='block';bDisplay=true;}
else
{option='none';bDisplay=false;}
break;}
elm.style.display=option;return bDisplay;}
function MOVE(id,x,y)
{elm=ELM(id);elm.style.left=x+'px';elm.style.top=y+'px';}
function POPUP(url,name,size,scrollbars)
{var nLeft=((.8*1024-size.width)/2);var nTop=((.8*screen.height-size.height)/2);var wnd=window.open(url,name,'menubar=0,toolbar=0,location=0,status=1,scrollbars='+(typeof('scrollbars')=='undefined'?0:scrollbars)+',resizable=0,width='+size.width+',height='+size.height+',left='+nLeft+',top='+nTop);wnd.focus();}
function FULLSCREEN(url,name,bFullWidth)
{var config=((bFullWidth)||(screen.width<=1024)?'fullscreen=1':'top=0,left=0,width=1070,height='+screen.height);wnd=window.open('',name,config+',menubar=1,toolbar=1,location=1,status=1,scrollbars=1,resizable=1');wnd.focus();}
function MAXCANVAS()
{top.window.moveTo(0,0);}
function SUBDOMINIO_PHOTOS_IDX(alias_photo)
{return(parseInt(alias_photo.charAt(alias_photo.length-1),16)%4)+1;}
function SEMAFORO(id_control,semaforo,valor_ok,valor_ko)
{ELM('semaforo_'+id_control).className='semaforo '+(semaforo?'verde':'rojo');valor=(semaforo?(typeof(valor_ok)=='undefined'?'':valor_ok):(typeof(valor_ko)=='undefined'?'':valor_ko));if(valor!='')ELM('semaforo_'+id_control).innerHTML=valor;if(ELM('boton_'+id_control+'_ok')!=null)DISPLAY('boton_'+id_control+'_ok',semaforo?'none':'inline');if(ELM('boton_'+id_control+'_ko')!=null)DISPLAY('boton_'+id_control+'_ko',semaforo?'inline':'none');if(ELM('boton_'+id_control+'_ok_1')!=null)DISPLAY('boton_'+id_control+'_ok_1',semaforo?'none':'inline');if(ELM('boton_'+id_control+'_ko_1')!=null)DISPLAY('boton_'+id_control+'_ko_1',semaforo?'inline':'none');if(ELM('boton_'+id_control+'_ok_2')!=null)DISPLAY('boton_'+id_control+'_ok_2',semaforo?'none':'inline');if(ELM('boton_'+id_control+'_ko_2')!=null)DISPLAY('boton_'+id_control+'_ko_2',semaforo?'inline':'none');}
var bAjaxSemaphore=true;function Ajax(url,params,bDebug,bExternalSemaphore)
{if(typeof(params)=='undefined')params='';if(typeof(bDebug)=='undefined')bDebug=false;if(typeof(bExternalSemaphore)=='undefined')bExternalSemaphore=false;if((!bExternalSemaphore)&&(!bAjaxSemaphore))return;bAjaxSemaphore=false;params+=(params==''?'':'&')+'ajax=1';var xmlhttp=new XMLHttpRequest();xmlhttp.open('POST',url,true);xmlhttp.setRequestHeader('Content-Type','application/x-www-form-urlencoded');xmlhttp.send(params);xmlhttp.onreadystatechange=function()
{if(xmlhttp.readyState==4)
{var js=xmlhttp.responseText;if(bDebug)
{document.write(js);}
else
{switch(xmlhttp.status)
{case 0:alert("Error de conexión al servidor. Vuelva a intentarlo.");break;case 200:eval(js);break;default:alert(xmlhttp.status);}}
bAjaxSemaphore=true;}}}
function GetPostParams(id_form)
{var params=[];var grupos=[];var elm_form=ELM(id_form);var i=0;var bSkip;while(i<elm_form.elements.length)
{var elm=elm_form.elements[i];if(elm.id!='')
{var value='';bSkip=false;switch(elm.type)
{case'text':case'password':case'hidden':case'textarea':case'select-one':value=elm.value;break;case'checkbox':value=(elm.checked?elm.value:'');break;case'radio':var grupo=eval('elm_form.elements.'+elm.name);if(typeof(grupos[elm.name])!='undefined')
{bSkip=true;break;}
if(typeof(grupo.length)=='undefined')
{value=elm.value;}
else
{for(j=0;j<grupo.length;j++)
{if(grupo[j].checked)
{value=grupo[j].value;break;}}}
grupos[elm.name]=true;break;}
if(!bSkip)
{value=value.replace(/\+/g,"%2B");value=value.replace(/&/g,"%26");params[params.length]=elm.name+'='+value;}}
i++;}
return params.join('&');}
function SetCursorPos(elm,pos)
{if((typeof(document.selection)!='undefined')&&(document.selection))
{var text=elm.value;elm.value='';elm.focus();var str=document.selection.createRange();elm.value=text;str.move('character',pos);str.moveEnd('character',0);str.select();}
else if(typeof(elm.selectionStart!='undefined'))
{elm.setSelectionRange(pos,pos);}
elm.focus();}
function SetCursorPosAtEnd(elm)
{SetCursorPos(elm,elm.value.length);}
function TRIM(s)
{return s.replace(/\b/g,'');}
function STRIP_PX(s)
{return parseInt(new String(s).split('px')[0]);}
function RIGHT(s,n)
{return(s.substring(s.length-Math.min(s.length,n)));}
function EsNumero(valor)
{var regexp=/^\d+$/;return(regexp.test(valor));}
function IsSafari()
{var regexp=/Safari/i;return(regexp.test(navigator.userAgent));}
function IsIE()
{return document.all&&window.ActiveXObject&&navigator.userAgent.toLowerCase().indexOf("msie")>-1&&navigator.userAgent.toLowerCase().indexOf("opera")==-1;}
function SetEventListener(elm,sEvent,fn)
{if(IsSafari())elm['on'+sEvent]=fn;else if(elm.addEventListener)elm.addEventListener(sEvent,fn,false);else if(elm.attachEvent)elm.attachEvent('on'+sEvent,fn);}
function StopEvent(ev)
{if(window.event)
{window.event.cancelBubble=true;window.event.returnValue=false;}
else
{if(ev.stopPropagation)ev.stopPropagation();if(ev.preventDefault)ev.preventDefault();}}
function GetEventElement(ev)
{return(window.event?window.event.srcElement:ev.target);}
function GetEventLink(ev)
{var elm=GetEventElement(ev);while(elm.nodeName.toLowerCase()!='a')elm=elm.parentNode;return elm;}
function GetScrollX()
{if(typeof(window.pageXOffset)=='number')return window.pageXOffset;else if(document.body&&document.body.scrollLeft)return document.body.scrollLeft;else if(document.documentElement&&document.documentElement.scrollLeft)return document.documentElement.scrollLeft;else return 0;}
function GetScrollY()
{if(typeof(window.pageYOffset)=='number')return window.pageYOffset;else if(document.body&&document.body.scrollTop)return document.body.scrollTop;else if(document.documentElement&&document.documentElement.scrollTop)return document.documentElement.scrollTop;else return 0;}
function GetMouseX(ev)
{if(ev.pageX)return STRIP_PX(ev.pageX);else if(ev.clientX)return GetScrollX(ev)+STRIP_PX(ev.clientX);else return 0;}
function GetMouseY(ev)
{if(ev.pageY)return STRIP_PX(ev.pageY);else if(ev.clientY)return GetScrollY(ev)+STRIP_PX(ev.clientY);else return 0;}
function GetEventElmXY(ev)
{if(ev.offsetX)return{'x':ev.offsetX+1,'y':ev.offsetY+1};var x=0;var y=0;elm=GetEventElement(ev);if(elm.offsetParent)
{do
{x+=elm.offsetLeft;y+=elm.offsetTop;}
while(elm=elm.offsetParent);}
return{'x':ev.pageX-x-1,'y':ev.pageY-y-1};}
function GetPageSize()
{if((window.innerHeight)&&(window.scrollMaxY))
{x=window.innerWidth+window.scrollMaxX;y=window.innerHeight+window.scrollMaxY;}
else if(document.body.scrollHeight>document.body.offsetHeight)
{x=document.body.scrollWidth;y=document.body.scrollHeight;}
else
{x=document.body.offsetWidth+document.body.offsetLeft;y=document.body.offsetHeight+document.body.offsetTop;}
return{'x':x,'y':y};}
function DatePicker(dia,mes,anyo)
{eval("var opts = {formElements: {"+anyo+": 'Y' , "+mes+": 'm' , "+dia+": 'd'} , showWeeks: true , statusFormat: 'l-cc-sp-d-sp-F-sp-Y'}");datePickerController.createDatePicker(opts);}
function str_replace(cadena,cambia_esto,por_esto)
{return cadena.split(cambia_esto).join(por_esto);}
function NUMERO(numero,separador_miles)
{sNumero_in=new String(numero);sNumero_aux="";for(i=0,ni=sNumero_in.length;i<ni;i++)
{if((i!=0)&&(i%3==0))sNumero_aux+=separador_miles;sNumero_aux+=sNumero_in.charAt(ni-(i+1));}
sNumero_out="";for(i=0,ni=sNumero_aux.length;i<ni;i++)
{sNumero_out+=sNumero_aux.charAt(ni-(i+1));}
return sNumero_out;}var Espacio={espacios:[],anuncios:[],Iniciar:function()
{for(var id_tipo_espacio=1;id_tipo_espacio<Espacio.espacios.length;id_tipo_espacio++)
{if(typeof(Espacio.espacios[id_tipo_espacio])!='undefined')
{for(var i=0;i<Espacio.espacios[id_tipo_espacio].length;i++)
{var id_subespacio=Espacio.espacios[id_tipo_espacio][i].id_subespacio;var elm_subespacio=ELM('subespacio_'+id_tipo_espacio+'_'+id_subespacio);if(elm_subespacio!=null)SetEventListener(elm_subespacio,'click',Espacio.OnClick);for(var j=1;j<Espacio.anuncios[id_tipo_espacio][id_subespacio].length;j++)
{Anuncio.Iniciar(id_tipo_espacio,id_subespacio,j);}}}}},OnClick:function(ev)
{StopEvent(ev);var elm=GetEventElement(ev);var id_partes=elm.id.split('_');ELM('id_subespacio_filtro').value=id_partes[2];Buscador.Buscar(ev);}};var Anuncio={id_tipo_espacio:'',id_subespacio:'',idx_anuncio:'',Iniciar:function(id_tipo_espacio,id_subespacio,idx_anuncio)
{var ad=ELM('ad_'+id_tipo_espacio+'_'+id_subespacio+'_'+idx_anuncio);SetEventListener(ad,'mouseover',Anuncio.OnMouseOver);SetEventListener(ad,'mouseout',Anuncio.OnMouseOut);SetEventListener(ad,'click',Anuncio.OnClick);},OnMouse:function(ev)
{StopEvent(ev);var elm=GetEventLink(ev);var id_partes=elm.id.split('_');Anuncio.id_tipo_espacio=id_partes[1];Anuncio.id_subespacio=id_partes[2];Anuncio.idx_anuncio=id_partes[3];return elm;},OnMouseOver:function(ev)
{Anuncio.OnMouse(ev);elm=ELM('ad_'+Anuncio.id_tipo_espacio+'_'+Anuncio.id_subespacio+'_'+Anuncio.idx_anuncio+'_titulo');switch(elm.className)
{case'titulo':elm.className='titulo_hover';break;case'titulo_grande':elm.className='titulo_hover_grande';break;case'titulo_pequeno':elm.className='titulo_hover_pequeno';break;}
elm.style.cursor='pointer';},OnMouseOut:function(ev)
{Anuncio.OnMouse(ev);elm=ELM('ad_'+Anuncio.id_tipo_espacio+'_'+Anuncio.id_subespacio+'_'+Anuncio.idx_anuncio+'_titulo');switch(elm.className)
{case'titulo_hover':elm.className='titulo';break;case'titulo_hover_grande':elm.className='titulo_grande';break;case'titulo_hover_pequeno':elm.className='titulo_pequeno';break;}},OnClick:function(ev)
{elm=Anuncio.OnMouse(ev);var form=ELM('content');if(typeof(form.id_poblacion)!='undefined')form.id_poblacion.value=Anuncio.id_subespacio;form.action=elm.href;form.method='post';form.target='_blank';form.submit();}};Espacio.espacios[2]=[];Espacio.anuncios[2]=[];Espacio.espacios[2][Espacio.espacios[2].length]={'id_subespacio':'bilbao'};Espacio.anuncios[2]['bilbao']=[];Espacio.anuncios[2]['bilbao'][1]={};Espacio.anuncios[2]['bilbao'][2]={};Espacio.anuncios[2]['bilbao'][3]={};Espacio.Iniciar();ELM('desactivada').innerHTML='<span class="titulo">Este anuncio ha caducado o ha sido desactivado.</span><br /><br />En la columna de la derecha te mostramos otras <strong>escorts</strong> que  están disponibles actualmente en Bilbao|Vizcaya.<br /><br />Si quieres ver el listado completo de <b>escorts</b> haz click <a href="http://www.photoescorts.com/es/es/escorts-bilbao" class="bold">aquí</a>.';document.getElementById('top').innerHTML+='<div class="addthis_toolbox addthis_default_style" style="margin-top:1px">'+'<a class="addthis_button_email"   addthis:url="http%3A%2F%2Fwww.photoescorts.com%2Fes%2Fes%2Fescort-4342" style="float:right"></a>'+'<a class="addthis_button_twitter"  addthis:url="http%3A%2F%2Fwww.photoescorts.com%2Fes%2Fes%2Fescort-4342" style="float:right"></a>'+'<a class="addthis_button_facebook" addthis:url="http%3A%2F%2Fwww.photoescorts.com%2Fes%2Fes%2Fescort-4342" style="float:right"></a>'+
('pees'=='pabr'?'<a class="addthis_button_orkut" addthis:url="http%3A%2F%2Fwww.photoescorts.com%2Fes%2Fes%2Fescort-4342" style="float:right"></a>':'')+'<div class="gplus" style="margin-right:10px;width:70px;position:relative;top:-2px;float:right"><g:plusone size="medium" href="http%3A%2F%2Fwww.photoescorts.com%2Fes%2Fes%2Fescort-4342"></g:plusone></div>'+'</div>';var gplus=document.createElement('script');gplus.type='text/javascript';gplus.async=true;gplus.src='https://apis.google.com/js/plusone.js';try{gplus.innerHTML="{lang: 'es'}";}catch(err){}
var s=document.getElementsByTagName('script')[0];s.parentNode.insertBefore(gplus,s);var addthis=document.createElement('script');addthis.type='text/javascript';addthis.async=true;addthis.src='http://s7.addthis.com/js/250/addthis_widget.js#pubid=xa-4e0e98a23de06cd4';s=document.getElementsByTagName('script')[1];s.parentNode.insertBefore(addthis,s);image_small=new Array();image_big=new Array();GoTo=new Array();if(location.pathname.indexOf('/escorts-madrid')!=-1)
{image_small[0]='http://gfx-1.photoescorts.com/pe/gfx/luxtal_mad_small.swf';image_small[1]='http://gfx-1.photoescorts.com/pe/gfx/diosas_escorts_small.swf';image_big[0]='http://gfx-1.photoescorts.com/pe/gfx/luxtal_mad_big.jpg';image_big[1]='http://gfx-1.photoescorts.com/pe/gfx/diosas_escorts_big_v2.jpg';GoTo[0]='http://www.photoescorts.com/es/es/banner-5052';GoTo[1]='http://www.photoescorts.com/es/es/banner-7148';}
else if((location.pathname.indexOf('/escorts-barcelona')!=-1)||(location.pathname.indexOf('/escorts-barcelone')!=-1))
{image_small[0]='http://gfx-1.photoescorts.com/pe/gfx/luxtal_bcn_small.swf';image_big[0]='http://gfx-1.photoescorts.com/pe/gfx/luxtal_bcn_big.jpg';GoTo[0]='http://www.photoescorts.com/es/es/banner-7408';}
else
{image_small[0]='http://gfx-1.photoescorts.com/pe/gfx/donsexshop_small.swf';image_small[1]='http://gfx-1.photoescorts.com/pe/gfx/dsses_small.swf';image_big[0]='http://gfx-1.photoescorts.com/pe/es/gfx/donsexshop_big.gif';image_big[1]='http://gfx-1.photoescorts.com/pe/es/gfx/dsses_big.gif';GoTo[0]='http://www.donsexshop.com/sexshop.asp';GoTo[1]='http://www.donsexshop.es';}
var anzahl=image_small.length;var nr=Math.round((anzahl-1)*Math.random());var Link=GoTo[nr];var Image1=image_small[nr];var Image2=image_big[nr];var esel=new Object();esel.ad_url=escape(Link);esel.small_path='http://gfx-1.photoescorts.com/pe/gfx/cornersmall.swf';esel.small_image=escape(Image1);esel.small_width='100';esel.small_height='100';esel.small_params='ico='+esel.small_image;esel.big_path='http://gfx-1.photoescorts.com/pe/gfx/cornerbig.swf';esel.big_image=escape(Image2);esel.big_width='650';esel.big_height='650';esel.big_params='big='+esel.big_image+'&ad_url='+esel.ad_url;function sizeup987()
{document.getElementById('eselcornerBig').style.top=0;document.getElementById('eselcornerSmall').style.top='-1000px';}
function sizedown987()
{document.getElementById("eselcornerSmall").style.top=0;document.getElementById("eselcornerBig").style.top="-1000px";}
esel.putObjects=function()
{document.write('<div id="eselcornerSmall" style="position:fixed;width:'+esel.small_width+'px;height:'+esel.small_height+'px;z-index:1;right:0px;top:0px;">');document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"');document.write(' codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0"');document.write(' id="eselSmallcornerObject" width="'+esel.small_width+'" height="'+esel.small_height+'">');document.write(' <param name="allowScriptAccess" value="always"/> ');document.write(' <param name="movie" value="'+esel.small_path+'?'+esel.small_params+'"/>');document.write(' <param name="wmode" value="transparent" />');document.write(' <param name="quality" value="high" /> ');document.write(' <param name="FlashVars" value="'+esel.small_params+'"/>');document.write('<embed src="'+esel.small_path+'?'+esel.small_params+'" name="eselcornerSmallObject" wmode="transparent" quality="high" width="'+esel.small_width+'" height="'+esel.small_height+'" flashvars="'+esel.small_params+'" allowscriptaccess="always" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer"></embed>');document.write('</object>');document.write('</div>');document.write('<div id="eselcornerBig" style="position:fixed;width:'+esel.big_width+'px;height:'+esel.big_height+'px;z-index:9999;right:0;top:0px;">');document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"');document.write(' codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0"');document.write(' id="eselcornerBigObject" width="'+esel.big_width+'" height="'+esel.big_height+'" style="float:right">');document.write(' <param name="allowScriptAccess" value="always"/> ');document.write(' <param name="movie" value="'+esel.big_path+'?'+esel.big_params+'"/>');document.write(' <param name="wmode" value="transparent"/>');document.write(' <param name="quality" value="high" /> ');document.write(' <param name="FlashVars" value="'+esel.big_params+'"/>');document.write('<embed src="'+esel.big_path+'?'+esel.big_params+'" id="eselcornerBigEmbed" name="eselcornerBigObject" wmode="transparent" quality="high" width="'+esel.big_width+'" height="'+esel.big_height+'" flashvars="'+esel.big_params+'" swliveconnect="true" allowscriptaccess="always" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer"></embed>');document.write('</object>');document.write('</div>');setTimeout('document.getElementById("eselcornerBig").style.top = "-1000px";',1000);}
esel.putObjects();var Footer=[];Footer.push('<div id="footer_dss"><ul class="footer_dss_items"><li class="footer_dss_item"><div class="photo"><a href="http://www.donsexshop.es/Juguetes-XXX.html" rel="nofollow"><img src="http://gfx-2.photoescorts.com/pe/es/gfx/dds_juguetes.jpg" alt="Juguetes XXX" /></a></div></li><li class="footer_dss_item"><div class="photo"><a href="http://www.donsexshop.es/Lenceria.html" rel="nofollow"><img src="http://gfx-2.photoescorts.com/pe/es/gfx/dds_lenceria.jpg" alt="Lencería" /></a></div></li><li class="footer_dss_item"><div class="photo"><a href="http://www.donsexshop.com/dvd.asp" rel="nofollow"><img src="http://gfx-2.photoescorts.com/pe/es/gfx/dds_dvd.jpg" alt="DVD" /></a></div></li><li class="footer_dss_item last"><div class="photo"><a href="http://www.donsexshop.es/Preservativos.html" rel="nofollow"><img src="http://gfx-2.photoescorts.com/pe/es/gfx/dds_preservativos.jpg" alt="Preservativos" /></a></div></li></ul><ul class="footer_dss_items" style="margin-top:0"><li class="footer_dss_item"><div class="photo"><a href="http://www.donsexshop.es/Alargamiento-Pene.html" rel="nofollow"><img src="http://gfx-2.photoescorts.com/pe/es/gfx/dds_alargamiento.jpg" alt="Alargamiento Pene" /></a></div></li><li class="footer_dss_item"><div class="photo"><a href="http://www.donsexshop.es/Juegos.html" rel="nofollow"><img src="http://gfx-2.photoescorts.com/pe/es/gfx/dds_juegos.jpg" alt="Juegos" /></a></div></li><li class="footer_dss_item"><div class="photo"><a href="http://www.donsexshop.es/Aceites-y-Lubricantes.html" rel="nofollow"><img src="http://gfx-2.photoescorts.com/pe/es/gfx/dds_aceites.jpg" alt="Aceites y Lubricantes" /></a></div></li><li class="footer_dss_item last"><div class="photo"><a href="http://www.donsexshop.es/Afrodisiacos.html" rel="nofollow"><img src="http://gfx-2.photoescorts.com/pe/es/gfx/dds_afrodisiacos.jpg" alt="Afrodisíacos" /></a></div></li></ul></div>');Footer.push('<div id="footer_webs">'+'   <div class="titulo_sec">WEBS DEL GRUPO :</div>'+'   <ul class="lista"><li><img id="fw_pees" src="http://gfx-1.photoescorts.com/pe/es/gfx/pees.gif" alt="PhotoEscorts.com" /></li><li><img id="fw_tpes" src="http://gfx-1.photoescorts.com/pe/es/gfx/tpes.gif" alt="TravestisPro.com" /></li><li><img id="fw_dss" src="http://gfx-1.photoescorts.com/pe/es/gfx/dss.gif" alt="DonSexShop.com" /></li><li><img id="fw_pkpe" src="http://gfx-1.photoescorts.com/pe/es/gfx/pkpe.gif" alt="PhotoKinesiologas.com" /></li><li><img id="fw_ppco" src="http://gfx-1.photoescorts.com/pe/es/gfx/ppco.gif" alt="PhotoPrepagos.com" /></li><li><img id="fw_pabr" src="http://gfx-1.photoescorts.com/pe/es/gfx/pabr.gif" alt="PhotoAcompanhantes.com" /></li></ul>'+'</div>');Footer.push('<ul id="footer_toolbar"><li><a class="sociedad" href="http://www.photoescorts.com/es/es/contactar" rel="nofollow"><span class="copyright">&copy;</span>&nbsp;Photo Interactive Services, S.L.</a></li><li><a class="contactar" href="http://www.photoescorts.com/es/es/contactar" rel="nofollow">Contactar</a></li><li><a class="privacidad" href="http://www.photoescorts.com/es/es/politica-privacidad" rel="nofollow">Política de Privacidad</a></li><li><a class="nota_legal" href="http://www.photoescorts.com/es/es/nota-legal" rel="nofollow">Nota Legal</a></li></ul>');ELM('footer').innerHTML=Footer.join('\n');if(ELM('content'))typeof(ELM('content').parentNode.clientHeight);
