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 Anunciate={Iniciar:function()
{SetEventListener(ELM('anunciate'),'click',Anunciate.OnClick);},OnClick:function(ev)
{StopEvent(ev);var form=ELM('content');if(typeof(form.id_poblacion)!='undefined')
{form.action='http://www.photoescorts.com/es/es/publicidad-para-escorts';form.method='post';form.target='';form.submit();}}};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%2Fescorts-oviedo" style="float:right"></a>'+'<a class="addthis_button_twitter"  addthis:url="http%3A%2F%2Fwww.photoescorts.com%2Fes%2Fes%2Fescorts-oviedo" style="float:right"></a>'+'<a class="addthis_button_facebook" addthis:url="http%3A%2F%2Fwww.photoescorts.com%2Fes%2Fes%2Fescorts-oviedo" style="float:right"></a>'+
('pees'=='pabr'?'<a class="addthis_button_orkut" addthis:url="http%3A%2F%2Fwww.photoescorts.com%2Fes%2Fes%2Fescorts-oviedo" 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%2Fescorts-oviedo"></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);function Sarissa(){}
Sarissa.VERSION="0.9.9.4";Sarissa.PARSED_OK="Document contains no parsing errors";Sarissa.PARSED_EMPTY="Document is empty";Sarissa.PARSED_UNKNOWN_ERROR="Not well-formed or other error";Sarissa.IS_ENABLED_TRANSFORM_NODE=false;Sarissa.REMOTE_CALL_FLAG="gr.abiss.sarissa.REMOTE_CALL_FLAG";Sarissa._lastUniqueSuffix=0;Sarissa._getUniqueSuffix=function(){return Sarissa._lastUniqueSuffix++;};Sarissa._SARISSA_IEPREFIX4XSLPARAM="";Sarissa._SARISSA_HAS_DOM_IMPLEMENTATION=document.implementation&&true;Sarissa._SARISSA_HAS_DOM_CREATE_DOCUMENT=Sarissa._SARISSA_HAS_DOM_IMPLEMENTATION&&document.implementation.createDocument;Sarissa._SARISSA_HAS_DOM_FEATURE=Sarissa._SARISSA_HAS_DOM_IMPLEMENTATION&&document.implementation.hasFeature;Sarissa._SARISSA_IS_MOZ=Sarissa._SARISSA_HAS_DOM_CREATE_DOCUMENT&&Sarissa._SARISSA_HAS_DOM_FEATURE;Sarissa._SARISSA_IS_SAFARI=navigator.userAgent.toLowerCase().indexOf("safari")!=-1||navigator.userAgent.toLowerCase().indexOf("konqueror")!=-1;Sarissa._SARISSA_IS_SAFARI_OLD=Sarissa._SARISSA_IS_SAFARI&&(parseInt((navigator.userAgent.match(/AppleWebKit\/(\d+)/)||{})[1],10)<420);Sarissa._SARISSA_IS_IE=document.all&&window.ActiveXObject&&navigator.userAgent.toLowerCase().indexOf("msie")>-1&&navigator.userAgent.toLowerCase().indexOf("opera")==-1;Sarissa._SARISSA_IS_OPERA=navigator.userAgent.toLowerCase().indexOf("opera")!=-1;if(!window.Node||!Node.ELEMENT_NODE){Node={ELEMENT_NODE:1,ATTRIBUTE_NODE:2,TEXT_NODE:3,CDATA_SECTION_NODE:4,ENTITY_REFERENCE_NODE:5,ENTITY_NODE:6,PROCESSING_INSTRUCTION_NODE:7,COMMENT_NODE:8,DOCUMENT_NODE:9,DOCUMENT_TYPE_NODE:10,DOCUMENT_FRAGMENT_NODE:11,NOTATION_NODE:12};}
if(Sarissa._SARISSA_IS_SAFARI_OLD){HTMLHtmlElement=document.createElement("html").constructor;Node=HTMLElement={};HTMLElement.prototype=HTMLHtmlElement.__proto__.__proto__;HTMLDocument=Document=document.constructor;var x=new DOMParser();XMLDocument=x.constructor;Element=x.parseFromString("<Single />","text/xml").documentElement.constructor;x=null;}
if(typeof XMLDocument=="undefined"&&typeof Document!="undefined"){XMLDocument=Document;}
if(Sarissa._SARISSA_IS_IE){Sarissa._SARISSA_IEPREFIX4XSLPARAM="xsl:";var _SARISSA_DOM_PROGID="";var _SARISSA_XMLHTTP_PROGID="";var _SARISSA_DOM_XMLWRITER="";Sarissa.pickRecentProgID=function(idList){var bFound=false,e;var o2Store;for(var i=0;i<idList.length&&!bFound;i++){try{var oDoc=new ActiveXObject(idList[i]);o2Store=idList[i];bFound=true;}catch(objException){e=objException;}}
if(!bFound){throw"Could not retrieve a valid progID of Class: "+idList[idList.length-1]+". (original exception: "+e+")";}
idList=null;return o2Store;};_SARISSA_DOM_PROGID=null;_SARISSA_THREADEDDOM_PROGID=null;_SARISSA_XSLTEMPLATE_PROGID=null;_SARISSA_XMLHTTP_PROGID=null;XMLHttpRequest=function(){if(!_SARISSA_XMLHTTP_PROGID){_SARISSA_XMLHTTP_PROGID=Sarissa.pickRecentProgID(["Msxml2.XMLHTTP.6.0","MSXML2.XMLHTTP.3.0","MSXML2.XMLHTTP","Microsoft.XMLHTTP"]);}
return new ActiveXObject(_SARISSA_XMLHTTP_PROGID);};Sarissa.getDomDocument=function(sUri,sName){if(!_SARISSA_DOM_PROGID){_SARISSA_DOM_PROGID=Sarissa.pickRecentProgID(["Msxml2.DOMDocument.6.0","Msxml2.DOMDocument.3.0","MSXML2.DOMDocument","MSXML.DOMDocument","Microsoft.XMLDOM"]);}
var oDoc=new ActiveXObject(_SARISSA_DOM_PROGID);if(sName){var prefix="";if(sUri){if(sName.indexOf(":")>1){prefix=sName.substring(0,sName.indexOf(":"));sName=sName.substring(sName.indexOf(":")+1);}else{prefix="a"+Sarissa._getUniqueSuffix();}}
if(sUri){oDoc.loadXML('<'+prefix+':'+sName+" xmlns:"+prefix+"=\""+sUri+"\""+" />");}else{oDoc.loadXML('<'+sName+" />");}}
return oDoc;};Sarissa.getParseErrorText=function(oDoc){var parseErrorText=Sarissa.PARSED_OK;if(oDoc&&oDoc.parseError&&oDoc.parseError.errorCode&&oDoc.parseError.errorCode!=0){parseErrorText="XML Parsing Error: "+oDoc.parseError.reason+"\nLocation: "+oDoc.parseError.url+"\nLine Number "+oDoc.parseError.line+", Column "+
oDoc.parseError.linepos+":\n"+oDoc.parseError.srcText+"\n";for(var i=0;i<oDoc.parseError.linepos;i++){parseErrorText+="-";}
parseErrorText+="^\n";}
else if(oDoc.documentElement===null){parseErrorText=Sarissa.PARSED_EMPTY;}
return parseErrorText;};Sarissa.setXpathNamespaces=function(oDoc,sNsSet){oDoc.setProperty("SelectionLanguage","XPath");oDoc.setProperty("SelectionNamespaces",sNsSet);};XSLTProcessor=function(){if(!_SARISSA_XSLTEMPLATE_PROGID){_SARISSA_XSLTEMPLATE_PROGID=Sarissa.pickRecentProgID(["Msxml2.XSLTemplate.6.0","MSXML2.XSLTemplate.3.0"]);}
this.template=new ActiveXObject(_SARISSA_XSLTEMPLATE_PROGID);this.processor=null;};XSLTProcessor.prototype.importStylesheet=function(xslDoc){if(!_SARISSA_THREADEDDOM_PROGID){_SARISSA_THREADEDDOM_PROGID=Sarissa.pickRecentProgID(["MSXML2.FreeThreadedDOMDocument.6.0","MSXML2.FreeThreadedDOMDocument.3.0"]);}
xslDoc.setProperty("SelectionLanguage","XPath");xslDoc.setProperty("SelectionNamespaces","xmlns:xsl='http://www.w3.org/1999/XSL/Transform'");var converted=new ActiveXObject(_SARISSA_THREADEDDOM_PROGID);try{converted.resolveExternals=true;converted.setProperty("AllowDocumentFunction",true);}
catch(e){}
if(xslDoc.url&&xslDoc.selectSingleNode("//xsl:*[local-name() = 'import' or local-name() = 'include']")!=null){converted.async=false;converted.load(xslDoc.url);}
else{converted.loadXML(xslDoc.xml);}
converted.setProperty("SelectionNamespaces","xmlns:xsl='http://www.w3.org/1999/XSL/Transform'");var output=converted.selectSingleNode("//xsl:output");if(output){this.outputMethod=output.getAttribute("method");}
else{delete this.outputMethod;}
this.template.stylesheet=converted;this.processor=this.template.createProcessor();this.paramsSet=[];};XSLTProcessor.prototype.transformToDocument=function(sourceDoc){var outDoc;if(_SARISSA_THREADEDDOM_PROGID){this.processor.input=sourceDoc;outDoc=new ActiveXObject(_SARISSA_DOM_PROGID);this.processor.output=outDoc;this.processor.transform();return outDoc;}
else{if(!_SARISSA_DOM_XMLWRITER){_SARISSA_DOM_XMLWRITER=Sarissa.pickRecentProgID(["Msxml2.MXXMLWriter.6.0","Msxml2.MXXMLWriter.3.0","MSXML2.MXXMLWriter","MSXML.MXXMLWriter","Microsoft.XMLDOM"]);}
this.processor.input=sourceDoc;outDoc=new ActiveXObject(_SARISSA_DOM_XMLWRITER);this.processor.output=outDoc;this.processor.transform();var oDoc=new ActiveXObject(_SARISSA_DOM_PROGID);oDoc.loadXML(outDoc.output+"");return oDoc;}};XSLTProcessor.prototype.transformToFragment=function(sourceDoc,ownerDoc){this.processor.input=sourceDoc;this.processor.transform();var s=this.processor.output;var f=ownerDoc.createDocumentFragment();var container;if(this.outputMethod=='text'){f.appendChild(ownerDoc.createTextNode(s));}else if(ownerDoc.body&&ownerDoc.body.innerHTML){container=ownerDoc.createElement('div');container.innerHTML=s;while(container.hasChildNodes()){f.appendChild(container.firstChild);}}
else{var oDoc=new ActiveXObject(_SARISSA_DOM_PROGID);if(s.substring(0,5)=='<'+'?xml'){s=s.substring(s.indexOf('?'+'>')+2);}
var xml=''.concat('<my>',s,'</my>');oDoc.loadXML(xml);container=oDoc.documentElement;while(container.hasChildNodes()){f.appendChild(container.firstChild);}}
return f;};XSLTProcessor.prototype.setParameter=function(nsURI,name,value){value=value?value:"";if(nsURI){this.processor.addParameter(name,value,nsURI);}else{this.processor.addParameter(name,value);}
nsURI=""+(nsURI||"");if(!this.paramsSet[nsURI]){this.paramsSet[nsURI]=[];}
this.paramsSet[nsURI][name]=value;};XSLTProcessor.prototype.getParameter=function(nsURI,name){nsURI=""+(nsURI||"");if(this.paramsSet[nsURI]&&this.paramsSet[nsURI][name]){return this.paramsSet[nsURI][name];}else{return null;}};XSLTProcessor.prototype.clearParameters=function(){for(var nsURI in this.paramsSet){for(var name in this.paramsSet[nsURI]){if(nsURI!=""){this.processor.addParameter(name,"",nsURI);}else{this.processor.addParameter(name,"");}}}
this.paramsSet=[];};}else{if(Sarissa._SARISSA_HAS_DOM_CREATE_DOCUMENT){Sarissa.__handleLoad__=function(oDoc){Sarissa.__setReadyState__(oDoc,4);};_sarissa_XMLDocument_onload=function(){Sarissa.__handleLoad__(this);};Sarissa.__setReadyState__=function(oDoc,iReadyState){oDoc.readyState=iReadyState;oDoc.readystate=iReadyState;if(oDoc.onreadystatechange!=null&&typeof oDoc.onreadystatechange=="function"){oDoc.onreadystatechange();}};Sarissa.getDomDocument=function(sUri,sName){var oDoc=document.implementation.createDocument(sUri?sUri:null,sName?sName:null,null);if(!oDoc.onreadystatechange){oDoc.onreadystatechange=null;}
if(!oDoc.readyState){oDoc.readyState=0;}
oDoc.addEventListener("load",_sarissa_XMLDocument_onload,false);return oDoc;};if(window.XMLDocument){}
else if(Sarissa._SARISSA_HAS_DOM_FEATURE&&window.Document&&!Document.prototype.load&&document.implementation.hasFeature('LS','3.0')){Sarissa.getDomDocument=function(sUri,sName){var oDoc=document.implementation.createDocument(sUri?sUri:null,sName?sName:null,null);return oDoc;};}
else{Sarissa.getDomDocument=function(sUri,sName){var oDoc=document.implementation.createDocument(sUri?sUri:null,sName?sName:null,null);if(oDoc&&(sUri||sName)&&!oDoc.documentElement){oDoc.appendChild(oDoc.createElementNS(sUri,sName));}
return oDoc;};}}}
if(!window.DOMParser){if(Sarissa._SARISSA_IS_SAFARI){DOMParser=function(){};DOMParser.prototype.parseFromString=function(sXml,contentType){var xmlhttp=new XMLHttpRequest();xmlhttp.open("GET","data:text/xml;charset=utf-8,"+encodeURIComponent(sXml),false);xmlhttp.send(null);return xmlhttp.responseXML;};}else if(Sarissa.getDomDocument&&Sarissa.getDomDocument()&&Sarissa.getDomDocument(null,"bar").xml){DOMParser=function(){};DOMParser.prototype.parseFromString=function(sXml,contentType){var doc=Sarissa.getDomDocument();doc.loadXML(sXml);return doc;};}}
if((typeof(document.importNode)=="undefined")&&Sarissa._SARISSA_IS_IE){try{document.importNode=function(oNode,bChildren){var tmp;if(oNode.nodeName=='#text'){return document.createTextNode(oNode.data);}
else{if(oNode.nodeName=="tbody"||oNode.nodeName=="tr"){tmp=document.createElement("table");}
else if(oNode.nodeName=="td"){tmp=document.createElement("tr");}
else if(oNode.nodeName=="option"){tmp=document.createElement("select");}
else{tmp=document.createElement("div");}
if(bChildren){tmp.innerHTML=oNode.xml?oNode.xml:oNode.outerHTML;}else{tmp.innerHTML=oNode.xml?oNode.cloneNode(false).xml:oNode.cloneNode(false).outerHTML;}
return tmp.getElementsByTagName("*")[0];}};}catch(e){}}
if(!Sarissa.getParseErrorText){Sarissa.getParseErrorText=function(oDoc){var parseErrorText=Sarissa.PARSED_OK;if((!oDoc)||(!oDoc.documentElement)){parseErrorText=Sarissa.PARSED_EMPTY;}else if(oDoc.documentElement.tagName=="parsererror"){parseErrorText=oDoc.documentElement.firstChild.data;parseErrorText+="\n"+oDoc.documentElement.firstChild.nextSibling.firstChild.data;}else if(oDoc.getElementsByTagName("parsererror").length>0){var parsererror=oDoc.getElementsByTagName("parsererror")[0];parseErrorText=Sarissa.getText(parsererror,true)+"\n";}else if(oDoc.parseError&&oDoc.parseError.errorCode!=0){parseErrorText=Sarissa.PARSED_UNKNOWN_ERROR;}
return parseErrorText;};}
Sarissa.getText=function(oNode,deep){var s="";var nodes=oNode.childNodes;for(var i=0;i<nodes.length;i++){var node=nodes[i];var nodeType=node.nodeType;if(nodeType==Node.TEXT_NODE||nodeType==Node.CDATA_SECTION_NODE){s+=node.data;}else if(deep===true&&(nodeType==Node.ELEMENT_NODE||nodeType==Node.DOCUMENT_NODE||nodeType==Node.DOCUMENT_FRAGMENT_NODE)){s+=Sarissa.getText(node,true);}}
return s;};if(!window.XMLSerializer&&Sarissa.getDomDocument&&Sarissa.getDomDocument("","foo",null).xml){XMLSerializer=function(){};XMLSerializer.prototype.serializeToString=function(oNode){return oNode.xml;};}
Sarissa.stripTags=function(s){return s?s.replace(/<[^>]+>/g,""):s;};Sarissa.clearChildNodes=function(oNode){while(oNode.firstChild){oNode.removeChild(oNode.firstChild);}};Sarissa.copyChildNodes=function(nodeFrom,nodeTo,bPreserveExisting){if(Sarissa._SARISSA_IS_SAFARI&&nodeTo.nodeType==Node.DOCUMENT_NODE){nodeTo=nodeTo.documentElement;}
if((!nodeFrom)||(!nodeTo)){throw"Both source and destination nodes must be provided";}
if(!bPreserveExisting){Sarissa.clearChildNodes(nodeTo);}
var ownerDoc=nodeTo.nodeType==Node.DOCUMENT_NODE?nodeTo:nodeTo.ownerDocument;var nodes=nodeFrom.childNodes;var i;if(typeof(ownerDoc.importNode)!="undefined"){for(i=0;i<nodes.length;i++){nodeTo.appendChild(ownerDoc.importNode(nodes[i],true));}}else{for(i=0;i<nodes.length;i++){nodeTo.appendChild(nodes[i].cloneNode(true));}}};Sarissa.moveChildNodes=function(nodeFrom,nodeTo,bPreserveExisting){if((!nodeFrom)||(!nodeTo)){throw"Both source and destination nodes must be provided";}
if(!bPreserveExisting){Sarissa.clearChildNodes(nodeTo);}
var nodes=nodeFrom.childNodes;if(nodeFrom.ownerDocument==nodeTo.ownerDocument){while(nodeFrom.firstChild){nodeTo.appendChild(nodeFrom.firstChild);}}else{var ownerDoc=nodeTo.nodeType==Node.DOCUMENT_NODE?nodeTo:nodeTo.ownerDocument;var i;if(typeof(ownerDoc.importNode)!="undefined"){for(i=0;i<nodes.length;i++){nodeTo.appendChild(ownerDoc.importNode(nodes[i],true));}}else{for(i=0;i<nodes.length;i++){nodeTo.appendChild(nodes[i].cloneNode(true));}}
Sarissa.clearChildNodes(nodeFrom);}};Sarissa.xmlize=function(anyObject,objectName,indentSpace){indentSpace=indentSpace?indentSpace:'';var s=indentSpace+'<'+objectName+'>';var isLeaf=false;if(!(anyObject instanceof Object)||anyObject instanceof Number||anyObject instanceof String||anyObject instanceof Boolean||anyObject instanceof Date){s+=Sarissa.escape(""+anyObject);isLeaf=true;}else{s+="\n";var isArrayItem=anyObject instanceof Array;for(var name in anyObject){s+=Sarissa.xmlize(anyObject[name],(isArrayItem?"array-item key=\""+name+"\"":name),indentSpace+"   ");}
s+=indentSpace;}
return(s+=(objectName.indexOf(' ')!=-1?"</array-item>\n":"</"+objectName+">\n"));};Sarissa.escape=function(sXml){return sXml.replace(/&/g,"&amp;").replace(/</g,"&lt;").replace(/>/g,"&gt;").replace(/"/g,"&quot;").replace(/'/g,"&apos;");};Sarissa.unescape=function(sXml){return sXml.replace(/&apos;/g,"'").replace(/&quot;/g,"\"").replace(/&gt;/g,">").replace(/&lt;/g,"<").replace(/&amp;/g,"&");};Sarissa.updateCursor=function(oTargetElement,sValue){if(oTargetElement&&oTargetElement.style&&oTargetElement.style.cursor!=undefined){oTargetElement.style.cursor=sValue;}};Sarissa.updateContentFromURI=function(sFromUrl,oTargetElement,xsltproc,callback,skipCache){try{Sarissa.updateCursor(oTargetElement,"wait");var xmlhttp=new XMLHttpRequest();xmlhttp.open("GET",sFromUrl,true);xmlhttp.onreadystatechange=function(){if(xmlhttp.readyState==4){try{var oDomDoc=xmlhttp.responseXML;if(oDomDoc&&Sarissa.getParseErrorText(oDomDoc)==Sarissa.PARSED_OK){Sarissa.updateContentFromNode(xmlhttp.responseXML,oTargetElement,xsltproc);if(callback){callback(sFromUrl,oTargetElement);}}
else{throw Sarissa.getParseErrorText(oDomDoc);}}
catch(e){if(callback){callback(sFromUrl,oTargetElement,e);}
else{throw e;}}}};if(skipCache){var oldage="Sat, 1 Jan 2000 00:00:00 GMT";xmlhttp.setRequestHeader("If-Modified-Since",oldage);}
xmlhttp.send("");}
catch(e){Sarissa.updateCursor(oTargetElement,"auto");if(callback){callback(sFromUrl,oTargetElement,e);}
else{throw e;}}};Sarissa.updateContentFromNode=function(oNode,oTargetElement,xsltproc){try{Sarissa.updateCursor(oTargetElement,"wait");Sarissa.clearChildNodes(oTargetElement);var ownerDoc=oNode.nodeType==Node.DOCUMENT_NODE?oNode:oNode.ownerDocument;if(ownerDoc.parseError&&ownerDoc.parseError.errorCode!=0){var pre=document.createElement("pre");pre.appendChild(document.createTextNode(Sarissa.getParseErrorText(ownerDoc)));oTargetElement.appendChild(pre);}
else{if(xsltproc){oNode=xsltproc.transformToDocument(oNode);}
if(oTargetElement.tagName.toLowerCase()=="textarea"||oTargetElement.tagName.toLowerCase()=="input"){oTargetElement.value=new XMLSerializer().serializeToString(oNode);}
else{try{oTargetElement.appendChild(oTargetElement.ownerDocument.importNode(oNode,true));}
catch(e){oTargetElement.innerHTML=new XMLSerializer().serializeToString(oNode);}}}}
catch(e){throw e;}
finally{Sarissa.updateCursor(oTargetElement,"auto");}};Sarissa.formToQueryString=function(oForm){var qs="";for(var i=0;i<oForm.elements.length;i++){var oField=oForm.elements[i];var sFieldName=oField.getAttribute("name")?oField.getAttribute("name"):oField.getAttribute("id");if(sFieldName&&((!oField.disabled)||oField.type=="hidden")){switch(oField.type){case"hidden":case"text":case"textarea":case"password":qs+=sFieldName+"="+encodeURIComponent(oField.value)+"&";break;case"select-one":qs+=sFieldName+"="+encodeURIComponent(oField.options[oField.selectedIndex].value)+"&";break;case"select-multiple":for(var j=0;j<oField.length;j++){var optElem=oField.options[j];if(optElem.selected===true){qs+=sFieldName+"[]"+"="+encodeURIComponent(optElem.value)+"&";}}
break;case"checkbox":case"radio":if(oField.checked){qs+=sFieldName+"="+encodeURIComponent(oField.value)+"&";}
break;}}}
return qs.substr(0,qs.length-1);};Sarissa.updateContentFromForm=function(oForm,oTargetElement,xsltproc,callback){try{Sarissa.updateCursor(oTargetElement,"wait");var params=Sarissa.formToQueryString(oForm)+"&"+Sarissa.REMOTE_CALL_FLAG+"=true";var xmlhttp=new XMLHttpRequest();var bUseGet=oForm.getAttribute("method")&&oForm.getAttribute("method").toLowerCase()=="get";if(bUseGet){xmlhttp.open("GET",oForm.getAttribute("action")+"?"+params,true);}
else{xmlhttp.open('POST',oForm.getAttribute("action"),true);xmlhttp.setRequestHeader("Content-type","application/x-www-form-urlencoded");xmlhttp.setRequestHeader("Content-length",params.length);xmlhttp.setRequestHeader("Connection","close");}
xmlhttp.onreadystatechange=function(){try{if(xmlhttp.readyState==4){var oDomDoc=xmlhttp.responseXML;if(oDomDoc&&Sarissa.getParseErrorText(oDomDoc)==Sarissa.PARSED_OK){Sarissa.updateContentFromNode(xmlhttp.responseXML,oTargetElement,xsltproc);if(callback){callback(oForm,oTargetElement);}}
else{throw Sarissa.getParseErrorText(oDomDoc);}}}
catch(e){if(callback){callback(oForm,oTargetElement,e);}
else{throw e;}}};xmlhttp.send(bUseGet?"":params);}
catch(e){Sarissa.updateCursor(oTargetElement,"auto");if(callback){callback(oForm,oTargetElement,e);}
else{throw e;}}
return false;};Sarissa.FUNCTION_NAME_REGEXP=new RegExp("");Sarissa.getFunctionName=function(oFunc,bForce){var name;if(!name){if(bForce){name="SarissaAnonymous"+Sarissa._getUniqueSuffix();window[name]=oFunc;}
else{name=null;}}
if(name){window[name]=oFunc;}
return name;};Sarissa.setRemoteJsonCallback=function(url,callback,callbackParam){if(!callbackParam){callbackParam="callback";}
var callbackFunctionName=Sarissa.getFunctionName(callback,true);var id="sarissa_json_script_id_"+Sarissa._getUniqueSuffix();var oHead=document.getElementsByTagName("head")[0];var scriptTag=document.createElement('script');scriptTag.type='text/javascript';scriptTag.id=id;scriptTag.onload=function(){};if(url.indexOf("?")!=-1){url+=("&"+callbackParam+"="+callbackFunctionName);}
else{url+=("?"+callbackParam+"="+callbackFunctionName);}
scriptTag.src=url;oHead.appendChild(scriptTag);return id;};var Button={Iniciar:function(obj_button,bCur)
{if(typeof(bCur)=='undefined')bCur=false;var elm_button=ELM(obj_button.id_element);SetEventListener(elm_button,'mouseover',obj_button.OnHover);SetEventListener(elm_button,'click',obj_button.OnClick);SetEventListener(elm_button,'mouseout',obj_button.OnOut);if(bCur)
{elm_button.style.backgroundPosition=eval(obj_button.id_css+'_CLICKED');eval(obj_button.id_grupo+'_cur = obj_button.id_element');}},OnHover:function(ev,obj_button)
{var elm=GetEventElement(ev);if((obj_button.id_grupo=='')||(elm.id!=eval(obj_button.id_grupo+'_cur')))elm.style.backgroundPosition=eval(obj_button.id_css+'_HOVER');return elm;},OnClick:function(ev,obj_button)
{StopEvent(ev);elm=GetEventElement(ev);if(obj_button.id_grupo!='')
{ELM(eval(obj_button.id_grupo+'_cur')).style.backgroundPosition=eval(obj_button.id_css+'_NORMAL');eval(obj_button.id_grupo+'_cur = elm.id');}
elm.style.backgroundPosition=eval(obj_button.id_css+(obj_button.id_grupo!=''?'_CLICKED':'_NORMAL'));if(elm.blur)elm.blur();return elm;},OnOut:function(ev,obj_button)
{var elm=GetEventElement(ev);if(typeof(elm)=='undefined')return;if((obj_button.id_grupo=='')||(elm.id!=eval(obj_button.id_grupo+'_cur')))elm.style.backgroundPosition=eval(obj_button.id_css+'_NORMAL');return elm;}};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();}};var but_NORMAL='0px   0px';var but_HOVER='0px -22px';var but_CLICKED='0px -44px';var but_modo_busqueda_avanzada_NORMAL='0px   0px';var but_modo_busqueda_avanzada_HOVER='0px -22px';var but_modo_busqueda_simple_NORMAL='0px -44px';var but_modo_busqueda_simple_HOVER='0px -66px';var ATRIBUTO_SLIDER_LENGTH=136;var ATRIBUTO_SLIDER_OFFSET=22;var URL_PHOTOS=[];URL_PHOTOS[1]='http://fotos-escorts-1.photoescorts.com/pees';URL_PHOTOS[2]='http://fotos-escorts-2.photoescorts.com/pees';URL_PHOTOS[3]='http://fotos-escorts-3.photoescorts.com/pees';URL_PHOTOS[4]='http://fotos-escorts-4.photoescorts.com/pees';var formatos=[];formatos[4]={'rowspan':1,'colspan':1};var templates={'js':{'espacio':"Espacio.espacios [#ID_TIPO_ESPACIO#][Espacio.espacios [#ID_TIPO_ESPACIO#].length] = {'id_subespacio' : '#ID_SUBESPACIO#'} ;Espacio.anuncios [#ID_TIPO_ESPACIO#]['#ID_SUBESPACIO#'] = [] ;",'ad':"Espacio.anuncios [#ID_TIPO_ESPACIO#]['#ID_SUBESPACIO#'][#IDX_ANUNCIO#] = {} ;"},'xhtml':{'ad_4':'<td class="ad_4 ad_4_col_#CSS_COLUMNA#"#SPAN#><a id="ad_#ID_TIPO_ESPACIO#_#ID_SUBESPACIO#_#IDX_ANUNCIO#" href="#URL_MODULO_LOCALE#/escort-#ID_ANUNCIO##ID_ANUNCIADO#" title="#LINK_TITLE#"><span class="photo"><img src="#URL_PHOTO#/#ANUNCIADO_PATH_NORMALIZADO#/#ALIAS_PHOTO#.#TIPO_ARCHIVO#" alt="#ALT#" class="img" />#MULTIMEDIA##CERTIFICADAS#</span><span class="texto"><span id="ad_#ID_TIPO_ESPACIO#_#ID_SUBESPACIO#_#IDX_ANUNCIO#_titulo" class="titulo_#CLASS_TITULO#"><strong>#TITULO#</strong></span> <span class="subtitulo1">#SUBTITULO_1#</span> <span class="subtitulo2">#SUBTITULO_2#</span> #ENTRADILLA#</span></a></td>','ad_entradilla':'<span class="entradilla">#ENTRADILLA#</span>','ad_certificadas':'<img src="#URL_GFX_1_LOCALE#/certificada.png" alt="#ALT#" class="certificadas" />','ad_multimedia':'<img src="#URL_GFX_1#/multimedia#AUDIO##VIDEO#.png" alt="#ALT#" class="multimedia" />','ad_vacio':'<td class="ad_#ID_FORMATO_ANUNCIO_VACIO# ad_#ID_FORMATO_ANUNCIO_VACIO#_col_#CSS_COLUMNA#"><img src="#URL_GFX_1#/transparente.gif" class="photo_vacia" alt="" /></td>','categoria_escorts_poblacion':'<div class="subespacio"><table cellspacing="0" cellpadding="0"><tr><td><h3 id="subespacio_#ID_TIPO_ESPACIO#_#ID_SUBESPACIO#">#CATEGORIA_POBLACION#</h3></td><td class="numero_escorts">#NUMERO_ESCORTS#</td><td class="flecha"><img src="#URL_GFX_1#/flecha_subespacio.gif" alt="" /></td></tr></table></div><table cellspacing="0" cellpadding="0">#ESCORTS_POBLACION#</table>','agencia_escorts_poblacion':'<div class="subespacio"><table cellspacing="0" cellpadding="0"><tr><td><h3 id="subespacio_#ID_TIPO_ESPACIO#_#ID_SUBESPACIO#">#AGENCIA_POBLACION#</h3></td><td class="numero_escorts">#NUMERO_ESCORTS#</td><td class="flecha"><img src="#URL_GFX_1#/flecha_subespacio.gif" alt="" /></td></tr></table></div><table cellspacing="0" cellpadding="0">#ESCORTS_POBLACION#</table>'}};var Buscador={msg:'',filtro:[],id_activo:1,secciones:[],atributos:[],Iniciar:function(numero_escorts)
{Buscador.InitAtributos();SetEventListener(document,'mousemove',AtributoSlider.OnMouseMove);SetEventListener(document,'mouseup',AtributoSlider.OnMouseUp);Buscador.Modo.Iniciar();Buscador.Todas.Iniciar();Buscador.SetNumeroEscorts(numero_escorts);Buscador.DisplaySecciones();Buscador.DisplayAtributos();DISPLAY("buscador_escort",true);},InitAtributos:function()
{for(var i=0;i<Buscador.atributos.length;i++)
{var id_atributo=Buscador.atributos[i].id_atributo;var id_tipo=Buscador.atributos[i].id_tipo;var valores=Buscador.atributos[i].valores;SetEventListener(ELM('atributo_'+id_atributo+'_masmenos'),'click',Atributo.OnClick_MasMenos);SetEventListener(ELM('atributo_'+id_atributo+'_nombre'),'click',Atributo.OnClick_Nombre);for(var j=0;j<valores.length;j++)
{SetEventListener(ELM('atributo_valor_'+valores[j]+'_control'),'click',AtributoValor.OnClick_Control);SetEventListener(ELM('atributo_valor_'+valores[j]+'_link'),'click',AtributoValor.OnClick_Link);}
switch(Buscador.atributos[i].id_tipo)
{case 1:case 2:case 3:break;case 4:SetEventListener(ELM('atributo_'+id_atributo+'_slider_puntero_min'),'mousedown',AtributoSlider.OnMouseDown);SetEventListener(ELM('atributo_'+id_atributo+'_slider_puntero_max'),'mousedown',AtributoSlider.OnMouseDown);var slider_puntero_min=Buscador.atributos[i].slider.valores.cur.min;var slider_puntero_max=Buscador.atributos[i].slider.valores.cur.max;if((slider_puntero_min=='')||(slider_puntero_max==''))AtributoSlider.Reset(id_atributo);break;}
Atributo.DisplayContadmin(id_atributo,ELM("atributo_"+id_atributo+"_expand").value);}},DisplaySecciones:function()
{for(var i=0;i<Buscador.secciones.length;i++)DISPLAY('seccion_'+Buscador.secciones[i].id_seccion,(Buscador.id_activo==2));},DisplayAtributos:function()
{for(var i=0;i<Buscador.atributos.length;i++)DISPLAY('atributo_'+Buscador.atributos[i].id_atributo,(Buscador.atributos[i].id_activo==1)||(Buscador.id_activo==2));},ResetAtributos:function()
{for(var i=0;i<Buscador.atributos.length;i++)
{var id_atributo=Buscador.atributos[i].id_atributo;var valores=Buscador.atributos[i].valores;switch(Buscador.atributos[i].id_tipo)
{case 1:for(var j=0;j<valores.length;j++)ELM('atributo_valor_'+valores[j]+'_control').checked=true;break;case 2:for(var j=0;j<valores.length;j++)if(!Buscador.EstaValorEnFiltro(i,valores[j]))ELM('atributo_valor_'+valores[j]+'_control').checked=false;break;case 3:for(var j=0;j<valores.length;j++)ELM('atributo_valor_'+valores[j]+'_control').checked=(j==0);break;case 4:AtributoSlider.Reset(id_atributo);if(valores.length!=0)
{var bChecked=(Buscador.GetFiltroAtributoValoresIniciales(i,false)==-1);for(var j=0;j<valores.length;j++)ELM('atributo_valor_'+valores[j]+'_control').checked=bChecked;}
break;}
Atributo.SetMasMenos(id_atributo,true);}},SetNumeroEscorts:function(numero)
{ELM('numero_escorts').innerHTML=numero;},GetFiltroAtributoValoresIniciales:function(idx_atributo)
{var id_atributo=Buscador.atributos[idx_atributo].id_atributo;for(var i=0,ni=Buscador.filtro.length;i<ni;i++)
{var filtro_atributo=Buscador.filtro[i].split(';');if(filtro_atributo[0]==id_atributo)
{var filtro_valores=[];for(var j=1,nj=filtro_atributo.length;j<nj;j++)filtro_valores.push(filtro_atributo[j]);return filtro_valores;}}
return-1;},EstaValorEnFiltro:function(idx_atributo,id_atributo_valor)
{var id_atributo=Buscador.atributos[idx_atributo].id_atributo;for(var i=0,ni=Buscador.filtro.length;i<ni;i++)
{var filtro_atributo=Buscador.filtro[i].split(';');if(filtro_atributo[0]==id_atributo)
{for(var j=1,nj=filtro_atributo.length;j<nj;j++)if(filtro_atributo[j]==id_atributo_valor)return true;}}
return false;},GetFiltroAtributoValores:function(idx_atributo,bSkipValoresIniciales)
{var id_tipo=Buscador.atributos[idx_atributo].id_tipo;var valores=Buscador.atributos[idx_atributo].valores;var filtro_valores=[];switch(id_tipo)
{case 1:for(var j=0;j<valores.length;j++)if(ELM('atributo_valor_'+valores[j]+'_control').checked)filtro_valores.push(valores[j]);if(filtro_valores.length==valores.length)return(bSkipValoresIniciales?-1:Buscador.GetFiltroAtributoValoresIniciales(idx_atributo));if(filtro_valores.length==0)filtro_valores.push(0);break;case 2:for(var j=0;j<valores.length;j++)if(ELM('atributo_valor_'+valores[j]+'_control').checked)filtro_valores.push(valores[j]);if(filtro_valores.length==0)return(bSkipValoresIniciales?-1:Buscador.GetFiltroAtributoValoresIniciales(idx_atributo));var filtro_valores_iniciales=Buscador.GetFiltroAtributoValoresIniciales(idx_atributo);if(filtro_valores.length==filtro_valores_iniciales.length)return(bSkipValoresIniciales?-1:filtro_valores_iniciales);break;case 3:for(var j=0;j<valores.length;j++)
{if(ELM('atributo_valor_'+valores[j]+'_control').checked)
{if(j==0)return(bSkipValoresIniciales?-1:Buscador.GetFiltroAtributoValoresIniciales(idx_atributo));filtro_valores.push(valores[j]);break;}}
break;case 4:var slider=Buscador.atributos[idx_atributo].slider.valores;if((slider.cur.min==slider.min)&&(slider.cur.max==slider.max)&&(valores.length==0))return(bSkipValoresIniciales?-1:Buscador.GetFiltroAtributoValoresIniciales(idx_atributo));filtro_valores_continuos=[];filtro_valores_continuos.push(slider.cur.min);filtro_valores_continuos.push(slider.cur.max);filtro_valores_discretos=[];for(var j=0;j<valores.length;j++)if(ELM('atributo_valor_'+valores[j]+'_control').checked)filtro_valores_discretos.push(valores[j]);if((slider.cur.min==slider.min)&&(slider.cur.max==slider.max)&&(filtro_valores_discretos.length==valores.length))return(bSkipValoresIniciales?-1:Buscador.GetFiltroAtributoValoresIniciales(idx_atributo));filtro_valores.push(filtro_valores_continuos.join(';'));if(filtro_valores_discretos.length!=0)filtro_valores.push(filtro_valores_discretos.join(';'));break;}
return filtro_valores;},GetFiltroBuscador:function()
{var filtro=[];for(var i=0;i<Buscador.atributos.length;i++)
{var filtro_valores=Buscador.GetFiltroAtributoValores(i,false);if(filtro_valores==-1)continue;var id_atributo=Buscador.atributos[i].id_atributo;var filtro_atributo=[];filtro_atributo.push(id_atributo);if(filtro_valores.length!=0)filtro_atributo.push(filtro_valores.join(';'));filtro.push(filtro_atributo.join(';'));}
return filtro.join('|');},Buscar:function(ev)
{MOVE('filtrando',GetMouseX(ev)+15,GetMouseY(ev)-35);DISPLAY('filtrando',true);var filtro=Buscador.GetFiltroBuscador();ELM('filtro').value=filtro;var param;if(ELM('id_categoria')!=null)
{var id_poblacion=ELM('id_subespacio_filtro').value;Buscador.msg='categoria';param='&id_categoria='+ELM('id_categoria').value+(id_poblacion==''?'':'&id_poblacion='+id_poblacion);}
else if(ELM('id_agencia')!=null)
{var id_poblacion=ELM('id_subespacio_filtro').value;Buscador.msg='agencia';param='&id_agencia='+ELM('id_agencia').value+(id_poblacion==''?'':'&id_poblacion='+id_poblacion);}
else if(ELM('id_poblacion')!=null)
{Buscador.msg='poblacion';param='&id_poblacion='+ELM('id_poblacion').value;}
else return;Ajax('http://www.photoescorts.com/es/es/buscar-escort','filtro='+filtro+param);},ActualizarEscorts:function(json_escorts)
{var espacios=[];eval(json_escorts);var webs_unicas=[];var escorts_unicas=[];var XHTML=[];var JS=[];for(i=0,ni=espacios.length;i<ni;i++)
{var espacio_cur=espacios[i].espacio;var anuncios_cur=espacios[i].anuncios;JS_ESPACIO_cur=templates.js.espacio;JS_ESPACIO_cur=JS_ESPACIO_cur.replace(/#ID_TIPO_ESPACIO#/g,espacio_cur.id_tipo_espacio);JS_ESPACIO_cur=JS_ESPACIO_cur.replace(/#ID_SUBESPACIO#/g,espacio_cur.id_subespacio);JS.push(JS_ESPACIO_cur);var XHTML_ADS=[];for(var f=0,nf=anuncios_cur.length;f<nf;f++)
{for(var c=0,nc=anuncios_cur[f].length;c<nc;c++)
{var anuncio_cur=anuncios_cur[f][c];var XHTML_AD_cur;if(anuncio_cur==null)
{XHTML_AD_cur=templates.xhtml['ad_vacio'];XHTML_AD_cur=XHTML_AD_cur.replace(/#ID_FORMATO_ANUNCIO_VACIO#/g,"4");}
else
{XHTML_AD_cur=templates.xhtml['ad_'+anuncio_cur.id_presentacion];XHTML_AD_cur=XHTML_AD_cur.replace(/#URL_PHOTO#/,URL_PHOTOS[SUBDOMINIO_PHOTOS_IDX(anuncio_cur.photo.alias)]);XHTML_AD_cur=XHTML_AD_cur.replace(/#ANUNCIADO_PATH_NORMALIZADO#/,anuncio_cur.photo.path_escort);XHTML_AD_cur=XHTML_AD_cur.replace(/#ALIAS_PHOTO#/,anuncio_cur.photo.alias);XHTML_AD_cur=XHTML_AD_cur.replace(/#TIPO_ARCHIVO#/,anuncio_cur.photo.tipo);XHTML_AD_cur=XHTML_AD_cur.replace(/#TITULO#/,anuncio_cur.texto.titulo);XHTML_AD_cur=XHTML_AD_cur.replace(/#SUBTITULO_1#/,anuncio_cur.texto.subtitulo_1);XHTML_AD_cur=XHTML_AD_cur.replace(/#SUBTITULO_2#/,anuncio_cur.texto.subtitulo_2);XHTML_AD_cur=XHTML_AD_cur.replace(/#CLASS_TITULO#/,anuncio_cur.texto.titulo.length<=18?'grande':'pequeno');if(typeof(anuncio_cur.texto.entradilla)=='undefined')
{XHTML_AD_ENTRADILLA_cur='';}
else
{XHTML_AD_ENTRADILLA_cur=templates.xhtml['ad_entradilla'];XHTML_AD_ENTRADILLA_cur=XHTML_AD_ENTRADILLA_cur.replace(/#ENTRADILLA#/,anuncio_cur.texto.entradilla);}
XHTML_AD_cur=XHTML_AD_cur.replace(/#ENTRADILLA#/,XHTML_AD_ENTRADILLA_cur);if(typeof(anuncio_cur.certificadas)=='undefined')
{XHTML_AD_CERTIFICADAS_cur='';}
else
{XHTML_AD_CERTIFICADAS_cur=templates.xhtml['ad_certificadas'];XHTML_AD_CERTIFICADAS_cur=XHTML_AD_CERTIFICADAS_cur.replace(/#ALT#/,'');}
XHTML_AD_cur=XHTML_AD_cur.replace(/#CERTIFICADAS#/,XHTML_AD_CERTIFICADAS_cur);if(typeof(anuncio_cur.multimedia)=='undefined')
{XHTML_AD_MULTIMEDIA_cur='';}
else
{XHTML_AD_MULTIMEDIA_cur=templates.xhtml['ad_multimedia'];XHTML_AD_MULTIMEDIA_cur=XHTML_AD_MULTIMEDIA_cur.replace(/#AUDIO#/,anuncio_cur.multimedia.audio);XHTML_AD_MULTIMEDIA_cur=XHTML_AD_MULTIMEDIA_cur.replace(/#VIDEO#/,anuncio_cur.multimedia.video);XHTML_AD_MULTIMEDIA_cur=XHTML_AD_MULTIMEDIA_cur.replace(/#ALT#/,'');}
XHTML_AD_cur=XHTML_AD_cur.replace(/#MULTIMEDIA#/,XHTML_AD_MULTIMEDIA_cur);XHTML_AD_cur=XHTML_AD_cur.replace(/#ALT#/,'');XHTML_AD_cur=XHTML_AD_cur.replace(/#LINK_TITLE#/,'');XHTML_AD_cur=XHTML_AD_cur.replace(/#ID_TIPO_ESPACIO#/g,espacio_cur.id_tipo_espacio);XHTML_AD_cur=XHTML_AD_cur.replace(/#ID_SUBESPACIO#/g,espacio_cur.id_subespacio);XHTML_AD_cur=XHTML_AD_cur.replace(/#IDX_ANUNCIO#/g,anuncio_cur.idx_anuncio);XHTML_AD_cur=XHTML_AD_cur.replace(/#ID_ANUNCIO#/g,anuncio_cur.id_anuncio);XHTML_AD_cur=XHTML_AD_cur.replace(/#ID_ANUNCIADO#/g,anuncio_cur.id_anunciado);XHTML_AD_cur=XHTML_AD_cur.replace(/#CSS_COLUMNA#/,(c==0?"0":"x"));var span='';if(formatos[anuncio_cur.id_presentacion].rowspan>1)span+=' rowspan='+formatos[anuncio_cur.id_presentacion].rowspan;if(formatos[anuncio_cur.id_presentacion].colspan>1)span+=' colspan='+formatos[anuncio_cur.id_presentacion].colspan;XHTML_AD_cur=XHTML_AD_cur.replace(/#SPAN#/,span);JS_AD_cur=templates.js.ad;JS_AD_cur=JS_AD_cur.replace(/#ID_TIPO_ESPACIO#/g,espacio_cur.id_tipo_espacio);JS_AD_cur=JS_AD_cur.replace(/#ID_SUBESPACIO#/g,espacio_cur.id_subespacio);JS_AD_cur=JS_AD_cur.replace(/#IDX_ANUNCIO#/g,anuncio_cur.idx_anuncio);JS.push(JS_AD_cur);if(new String(anuncio_cur.id_anuncio)!='')webs_unicas[new String(anuncio_cur.id_anuncio)]=true;if(new String(anuncio_cur.id_anunciado)!='')escorts_unicas[new String(anuncio_cur.id_anunciado)]=true;}
XHTML_AD_cur=XHTML_AD_cur.replace(/#CSS_COLUMNA#/,(c==0?"0":"x"));XHTML_ADS.push((c==0?"<tr>":"")+XHTML_AD_cur+(c==nc-1?"</tr>":""));}}
switch(Buscador.msg)
{case'poblacion':if(XHTML_ADS.length!=0)
{XHTML_ADS=XHTML_ADS.join('');XHTML_ADS=XHTML_ADS.replace(/#URL_MODULO_LOCALE#/g,'http://www.photoescorts.com/es/es');XHTML_ADS=XHTML_ADS.replace(/#URL_GFX_1#/g,'http://gfx-1.photoescorts.com/pe/gfx');XHTML_ADS=XHTML_ADS.replace(/#URL_GFX_1_LOCALE#/g,'http://gfx-1.photoescorts.com/pe/es/gfx');XHTML.push(XHTML_ADS);}
break;case'categoria':case'agencia':if(XHTML_ADS.length!=0)
{var XHTML_ESPACIO_cur=eval('templates.xhtml.'+Buscador.msg+'_escorts_poblacion');XHTML_ESPACIO_cur=XHTML_ESPACIO_cur.replace(/#ID_TIPO_ESPACIO#/g,espacio_cur.id_tipo_espacio);XHTML_ESPACIO_cur=XHTML_ESPACIO_cur.replace(/#ID_SUBESPACIO#/g,espacio_cur.id_subespacio);XHTML_ESPACIO_cur=XHTML_ESPACIO_cur.replace(/#CATEGORIA_POBLACION#/g,espacio_cur.categoria_poblacion);XHTML_ESPACIO_cur=XHTML_ESPACIO_cur.replace(/#AGENCIA_POBLACION#/g,espacio_cur.agencia_poblacion);XHTML_ESPACIO_cur=XHTML_ESPACIO_cur.replace(/#NOMBRE_POBLACION#/g,espacio_cur.nombre_poblacion);XHTML_ESPACIO_cur=XHTML_ESPACIO_cur.replace(/#REWRITE_POBLACION#/g,espacio_cur.rewrite);XHTML_ESPACIO_cur=XHTML_ESPACIO_cur.replace(/#NUMERO_ESCORTS#/g,espacio_cur.numero_escorts);XHTML_ESPACIO_cur=XHTML_ESPACIO_cur.replace(/#LINK_TITLE#/,'');XHTML_ESPACIO_cur=XHTML_ESPACIO_cur.replace(/#ESCORTS_POBLACION#/g,XHTML_ADS.join(''));XHTML_ESPACIO_cur=XHTML_ESPACIO_cur.replace(/#URL_MODULO_LOCALE#/g,'http://www.photoescorts.com/es/es');XHTML_ESPACIO_cur=XHTML_ESPACIO_cur.replace(/#URL_GFX_1#/g,'http://gfx-1.photoescorts.com/pe/gfx');XHTML_ESPACIO_cur=XHTML_ESPACIO_cur.replace(/#URL_GFX_1_LOCALE#/g,'http://gfx-1.photoescorts.com/pe/es/gfx');XHTML.push(XHTML_ESPACIO_cur);}
break;}}
var bVacio=false;if(XHTML.length==0)
{bVacio=true;switch(Buscador.msg)
{case'poblacion':XHTML.push("<tr><td><span class='vacio'>No hay escorts disponibles con estas características.</span></td></tr>");break;case'categoria':XHTML.push("<span class='vacio'>No hay escorts disponibles con estas características.</span>");break;case'agencia':XHTML.push("<span class='vacio'>No hay escorts disponibles con estas características.</span>");break;}}
ELM('escorts_ads').innerHTML=(Buscador.msg=='poblacion'?'<table cellspacing="0" cellpadding="0">':'')+XHTML.join('')+(Buscador.msg=='poblacion'?'</table>':'');typeof(ELM('content').parentNode.clientHeight);if(!bVacio)
{switch(Buscador.msg)
{case'poblacion':case'categoria':Espacio.espacios[2]=[];Espacio.anuncios[2]=[];break;case'agencia':Espacio.espacios[4]=[];Espacio.anuncios[4]=[];break;}
JS=JS.join('');eval(JS);Espacio.Iniciar();}
var numero_escorts=0;for(var i=0,ni=webs_unicas.length;i<ni;i++)
{if(typeof(webs_unicas[i])!='undefined')numero_escorts++;}
for(var i=0,ni=escorts_unicas.length;i<ni;i++)
{if(typeof(escorts_unicas[i])!='undefined')numero_escorts++;}
Buscador.SetNumeroEscorts(numero_escorts);DISPLAY('filtrando',false);},Modo:{id_element:'but_buscador_modo',id_grupo:'',id_css:'but_modo_busqueda_avanzada',Iniciar:function(){Button.Iniciar(Buscador.Modo);},OnHover:function(ev){Button.OnHover(ev,Buscador.Modo);},OnOut:function(ev){Button.OnOut(ev,Buscador.Modo);},OnClick:function(ev)
{Buscador.id_activo=(Buscador.id_activo==1?2:1);Buscador.Modo.id_css=(Buscador.id_activo==1?'but_modo_busqueda_avanzada':'but_modo_busqueda_simple');Button.OnClick(ev,Buscador.Modo);Buscador.DisplaySecciones();Buscador.DisplayAtributos();}},Todas:{id_element:'but_buscador_todas',id_grupo:'',id_css:'but',Iniciar:function(){Button.Iniciar(Buscador.Todas);},OnHover:function(ev){Button.OnHover(ev,Buscador.Todas);},OnOut:function(ev){Button.OnOut(ev,Buscador.Todas);},OnClick:function(ev)
{Button.OnClick(ev,Buscador.Todas);Buscador.ResetAtributos();Buscador.Buscar(ev);}}};var Atributo={GetIdx:function(id_atributo)
{for(var i=0;i<Buscador.atributos.length;i++)
{if(Buscador.atributos[i].id_atributo==id_atributo)return i;}
return-1;},OnClick:function(ev)
{StopEvent(ev);var elm=GetEventElement(ev);return elm.id.substring(new String('atributo_').length,elm.id.lastIndexOf('_'));},OnClick_MasMenos:function(ev)
{var id_atributo=Atributo.OnClick(ev);Atributo.DisplayContadmin(id_atributo,'switch');},OnClick_Nombre:function(ev)
{var id_atributo=Atributo.OnClick(ev);for(var i=0;i<Buscador.atributos.length;i++)
{Atributo.DisplayContadmin(Buscador.atributos[i].id_atributo,(Buscador.atributos[i].id_atributo==id_atributo));}},SetMasMenos:function(id_atributo,bGetFiltro)
{var bSet;if(bGetFiltro)
{bSet=(Buscador.GetFiltroAtributoValores(Atributo.GetIdx(id_atributo),true)==-1?'0':'1');ELM('atributo_'+id_atributo+'_set').value=bSet;}
else
{bSet=ELM('atributo_'+id_atributo+'_set').value;}
var css_expand=(ELM("atributo_"+id_atributo+"_expand").value=='0'?'mas':'menos');var css_set=(bSet=='1'?'set':'unset');ELM('atributo_'+id_atributo+'_masmenos').className='atributo_'+css_expand+'_'+css_set;},DisplayContadmin:function(id_atributo,action)
{ELM('atributo_'+id_atributo+'_expand').value=(DISPLAY('atributo_'+id_atributo+'_contadmin',action)?'1':'0');Atributo.SetMasMenos(id_atributo,false);}};var AtributoValor={GetAtributo:function(id_atributo_valor)
{for(var i=0;i<Buscador.atributos.length;i++)
{var valores=Buscador.atributos[i].valores;for(var j=0;j<valores.length;j++)
{if(valores[j]==id_atributo_valor)return Buscador.atributos[i].id_atributo;}}
return-1;},OnClick_Control:function(ev)
{var elm=GetEventElement(ev);var id_atributo_valor=elm.id.substring(new String('atributo_valor_').length,elm.id.indexOf('_control'));var id_atributo=AtributoValor.GetAtributo(id_atributo_valor);var idx_atributo=Atributo.GetIdx(id_atributo);switch(Buscador.atributos[idx_atributo].id_tipo)
{case 1:if((Buscador.GetFiltroAtributoValoresIniciales(idx_atributo)!=-1)&&(Buscador.atributos[idx_atributo].valores.length==1))
{StopEvent(ev);return;}
var valores=Buscador.atributos[idx_atributo].valores;var nChecked=0;for(var j=0;j<valores.length;j++)
{if(ELM('atributo_valor_'+valores[j]+'_control').checked)nChecked++;}
if(nChecked==0)
{StopEvent(ev);return;}
break;case 2:if(Buscador.EstaValorEnFiltro(idx_atributo,id_atributo_valor))
{StopEvent(ev);return;}
break;case 3:if(Buscador.atributos[idx_atributo].valores.length==1)
{StopEvent(ev);return;}
break;case 4:if((Buscador.GetFiltroAtributoValoresIniciales(idx_atributo)!=-1)&&(Buscador.atributos[idx_atributo].valores.length==1))
{StopEvent(ev);return;}
break;}
Atributo.SetMasMenos(id_atributo,true);Buscador.Buscar(ev);},OnClick_Link:function(ev)
{StopEvent(ev);var elm=GetEventElement(ev);var id_atributo_valor=elm.id.substring(new String('atributo_valor_').length,elm.id.indexOf('_link'));var id_atributo=AtributoValor.GetAtributo(id_atributo_valor);var idx_atributo=Atributo.GetIdx(id_atributo);var valores=Buscador.atributos[idx_atributo].valores;for(var j=0;j<valores.length;j++)
{switch(Buscador.atributos[idx_atributo].id_tipo)
{case 1:case 3:case 4:if((Buscador.GetFiltroAtributoValoresIniciales(idx_atributo)!=-1)&&(Buscador.atributos[idx_atributo].valores.length==1))
{StopEvent(ev);return;}
AtributoValor.Check(valores[j],valores[j]==id_atributo_valor);break;case 2:if(!Buscador.EstaValorEnFiltro(idx_atributo,valores[j]))AtributoValor.Check(valores[j],valores[j]==id_atributo_valor);break;}}
Atributo.SetMasMenos(id_atributo,true);Buscador.Buscar(ev);},Check:function(id_atributo_valor,bChecked)
{ELM('atributo_valor_'+id_atributo_valor+'_control').checked=bChecked;}};var AtributoSlider={id_atributo:'',id_puntero:'',bDrag:false,eSlider:'undefined',ePuntero:{'min':'undefined','max':'undefined'},eValor:'undefined',SelectPuntero:function(id_atributo,id_puntero)
{AtributoSlider.id_atributo=id_atributo;AtributoSlider.id_puntero=id_puntero;AtributoSlider.eSlider=Buscador.atributos[Atributo.GetIdx(id_atributo)].slider;AtributoSlider.ePuntero.min=ELM('atributo_'+id_atributo+'_slider_puntero_min');AtributoSlider.ePuntero.max=ELM('atributo_'+id_atributo+'_slider_puntero_max');AtributoSlider.eValor=ELM('atributo_'+id_atributo+'_slider_valor_'+id_puntero);},GetPunteroOffset:function(id_puntero)
{return STRIP_PX(AtributoSlider.ePuntero[id_puntero].style.left);},SetPunteroOffset:function(offset)
{var valor;switch(offset)
{case 0:valor=AtributoSlider.eSlider.valores.min;break;case ATRIBUTO_SLIDER_LENGTH-1:valor=AtributoSlider.eSlider.valores.max;break;default:valor=Math.round((AtributoSlider.eSlider.valores.min+offset*AtributoSlider.eSlider.escala)/AtributoSlider.eSlider.incremento_valor)*AtributoSlider.eSlider.incremento_valor;valor=Math.min(valor,AtributoSlider.eSlider.valores.max);valor=Math.max(valor,AtributoSlider.eSlider.valores.min);}
if(valor!=AtributoSlider.eSlider.valores.cur[AtributoSlider.id_puntero])
{AtributoSlider.eSlider.valores.cur[AtributoSlider.id_puntero]=valor;AtributoSlider.eValor.innerHTML=AtributoSlider.eSlider.formato_valor.replace(/#VALOR#/,NUMERO(valor,'.'));}
AtributoSlider.ePuntero[AtributoSlider.id_puntero].style.left=offset+'px';},SetPunteroValor:function(valor)
{var offset;valor=Math.min(valor,AtributoSlider.eSlider.valores.max);valor=Math.max(valor,AtributoSlider.eSlider.valores.min);switch(valor)
{case AtributoSlider.eSlider.valores.min:case AtributoSlider.eSlider.valores.max:switch(AtributoSlider.id_puntero)
{case'min':offset=0;break;case'max':offset=ATRIBUTO_SLIDER_LENGTH-1;break;}
break;default:offset=Math.round((valor-AtributoSlider.eSlider.valores.min)/AtributoSlider.eSlider.escala/AtributoSlider.eSlider.incremento_valor)*AtributoSlider.eSlider.incremento_valor;offset=Math.min(offset,ATRIBUTO_SLIDER_LENGTH-1);offset=Math.max(offset,0);}
if(valor!=AtributoSlider.eSlider.valores.cur[AtributoSlider.id_puntero])
{AtributoSlider.eSlider.valores.cur[AtributoSlider.id_puntero]=valor;AtributoSlider.eValor.innerHTML=AtributoSlider.eSlider.formato_valor.replace(/#VALOR#/,NUMERO(valor,'.'));}
AtributoSlider.ePuntero[AtributoSlider.id_puntero].style.left=offset+'px';},SetValores:function(id_atributo,min,max)
{AtributoSlider.SelectPuntero(id_atributo,'min');if(typeof(min)=='undefined')min=AtributoSlider.eSlider.valores.min;AtributoSlider.SetPunteroValor(min);AtributoSlider.SelectPuntero(id_atributo,'max');if(typeof(max)=='undefined')max=AtributoSlider.eSlider.valores.max;AtributoSlider.SetPunteroValor(max);},Reset:function(id_atributo)
{AtributoSlider.SetValores(id_atributo);},OnMouseDown:function(ev)
{if(!AtributoSlider.bDrag)
{StopEvent(ev);var elm=GetEventElement(ev);AtributoSlider.SelectPuntero(elm.id.substring(new String('atributo_').length,elm.id.indexOf('_slider')),RIGHT(elm.id,3));AtributoSlider.bDrag=true;}},OnMouseMove:function(ev)
{if(AtributoSlider.bDrag)
{StopEvent(ev);var offset=Math.round(GetMouseX(ev)-ATRIBUTO_SLIDER_OFFSET);switch(AtributoSlider.id_puntero)
{case'min':offset=Math.max(0,offset);offset=Math.min(offset,AtributoSlider.GetPunteroOffset('max'));offset=Math.min(offset,ATRIBUTO_SLIDER_LENGTH-3);break;case'max':offset=Math.min(offset,ATRIBUTO_SLIDER_LENGTH-1);offset=Math.max(AtributoSlider.GetPunteroOffset('min'),offset);break;}
AtributoSlider.SetPunteroOffset(offset);}},OnMouseUp:function(ev)
{if(AtributoSlider.bDrag)
{StopEvent(ev);AtributoSlider.bDrag=false;Atributo.SetMasMenos(AtributoSlider.id_atributo,true);Buscador.Buscar(ev);}}};var xhtml_buscador=[];xhtml_buscador.push('<ul>');xhtml_buscador.push('  <li id="menu_buscador"');xhtml_buscador.push('     ><input id="but_buscador_modo"  type="image" src="http://gfx-1.photoescorts.com/pe/gfx/transparente.gif" alt="Más / Menos filtros"');xhtml_buscador.push('    /><input id="but_buscador_todas" type="image" src="http://gfx-1.photoescorts.com/pe/gfx/transparente.gif" alt="Todas las escorts"');xhtml_buscador.push('    /><\/li>');xhtml_buscador.push('  <li id="resumen"><span class="leyenda">ESCORTS :<\/span><span id="numero_escorts"><\/span><\/li>');Buscador.secciones.push({"id_seccion":6});xhtml_buscador.push('<li id="seccion_6" class="seccion_fila_0">');xhtml_buscador.push('  <div class="seccion_nombre">Anuncio<\/div>');xhtml_buscador.push('<\/li>');Buscador.atributos.push({'id_atributo':41,'id_tipo':2,'id_activo':1,'valores':[],'slider':{}});xhtml_buscador.push('<li id="atributo_41" class="atributo">');xhtml_buscador.push('  <div class="atributo_root">');xhtml_buscador.push('    <table cellspacing="0" cellpadding="0">');xhtml_buscador.push('      <tr>');xhtml_buscador.push('        <td valign="top"><img id="atributo_41_masmenos" src="http://gfx-1.photoescorts.com/pe/gfx/transparente.gif" class="atributo_0" alt="" /><\/td>');xhtml_buscador.push('        <td valign="top"><span id="atributo_41_nombre" class="atributo_nombre">Multimedia<\/span><\/td>');xhtml_buscador.push('      <\/tr>');xhtml_buscador.push('    <\/table>');xhtml_buscador.push('    <input id="atributo_41_expand" type="hidden" value="1" />');xhtml_buscador.push('    <input id="atributo_41_set"  type="hidden" value="0"   />');xhtml_buscador.push('  <\/div>');xhtml_buscador.push('  <div id="atributo_41_contadmin" class="on_block">');xhtml_buscador.push('<table class="atributo_checkboxes" cellspacing="0" cellpadding="0">');Buscador.atributos[Buscador.atributos.length-1].valores.push(4105);xhtml_buscador.push('<tr>');xhtml_buscador.push('  <td valign="top">');xhtml_buscador.push('    <input id="atributo_valor_4105_control" type="checkbox" value="1" />');xhtml_buscador.push('  <\/td>');xhtml_buscador.push('  <td class="atributo_valor" valign="top"><span id="atributo_valor_4105_link" class="atributo_valor_link">Fotos certificadas<\/span><\/td>');xhtml_buscador.push('<\/tr>');Buscador.atributos[Buscador.atributos.length-1].valores.push(4101);xhtml_buscador.push('<tr>');xhtml_buscador.push('  <td valign="top">');xhtml_buscador.push('    <input id="atributo_valor_4101_control" type="checkbox" value="1" />');xhtml_buscador.push('  <\/td>');xhtml_buscador.push('  <td class="atributo_valor" valign="top"><span id="atributo_valor_4101_link" class="atributo_valor_link">Fotos cara visible<\/span><\/td>');xhtml_buscador.push('<\/tr>');Buscador.atributos[Buscador.atributos.length-1].valores.push(4104);xhtml_buscador.push('<tr>');xhtml_buscador.push('  <td valign="top">');xhtml_buscador.push('    <input id="atributo_valor_4104_control" type="checkbox" value="1" />');xhtml_buscador.push('  <\/td>');xhtml_buscador.push('  <td class="atributo_valor" valign="top"><span id="atributo_valor_4104_link" class="atributo_valor_link">Con vídeo<\/span><\/td>');xhtml_buscador.push('<\/tr>');xhtml_buscador.push('<\/table>');xhtml_buscador.push('<div style="clear: both"><\/div>');xhtml_buscador.push('  <\/div>');xhtml_buscador.push('<\/li>');Buscador.atributos.push({'id_atributo':42,'id_tipo':3,'id_activo':1,'valores':[],'slider':{}});xhtml_buscador.push('<li id="atributo_42" class="atributo">');xhtml_buscador.push('  <div class="atributo_root">');xhtml_buscador.push('    <table cellspacing="0" cellpadding="0">');xhtml_buscador.push('      <tr>');xhtml_buscador.push('        <td valign="top"><img id="atributo_42_masmenos" src="http://gfx-1.photoescorts.com/pe/gfx/transparente.gif" class="atributo_0" alt="" /><\/td>');xhtml_buscador.push('        <td valign="top"><span id="atributo_42_nombre" class="atributo_nombre">Publicada<\/span><\/td>');xhtml_buscador.push('      <\/tr>');xhtml_buscador.push('    <\/table>');xhtml_buscador.push('    <input id="atributo_42_expand" type="hidden" value="1" />');xhtml_buscador.push('    <input id="atributo_42_set"  type="hidden" value="0"   />');xhtml_buscador.push('  <\/div>');xhtml_buscador.push('  <div id="atributo_42_contadmin" class="on_block">');xhtml_buscador.push('<table class="atributo_radios" cellspacing="0" cellpadding="0">');Buscador.atributos[Buscador.atributos.length-1].valores.push(4201);xhtml_buscador.push('<tr>');xhtml_buscador.push('  <td valign="top">');xhtml_buscador.push('    <input id="atributo_valor_4201_control" name="atributo_valor_42" type="radio" class="radio" value="4201" checked="checked" />');xhtml_buscador.push('  <\/td>');xhtml_buscador.push('  <td class="atributo_valor" valign="top"><span id="atributo_valor_4201_link" class="atributo_valor_link">Cualquier fecha<\/span><\/td>');xhtml_buscador.push('<\/tr>');Buscador.atributos[Buscador.atributos.length-1].valores.push(4202);xhtml_buscador.push('<tr>');xhtml_buscador.push('  <td valign="top">');xhtml_buscador.push('    <input id="atributo_valor_4202_control" name="atributo_valor_42" type="radio" class="radio" value="4202" />');xhtml_buscador.push('  <\/td>');xhtml_buscador.push('  <td class="atributo_valor" valign="top"><span id="atributo_valor_4202_link" class="atributo_valor_link">Últimos 30 días<\/span><\/td>');xhtml_buscador.push('<\/tr>');Buscador.atributos[Buscador.atributos.length-1].valores.push(4203);xhtml_buscador.push('<tr>');xhtml_buscador.push('  <td valign="top">');xhtml_buscador.push('    <input id="atributo_valor_4203_control" name="atributo_valor_42" type="radio" class="radio" value="4203" />');xhtml_buscador.push('  <\/td>');xhtml_buscador.push('  <td class="atributo_valor" valign="top"><span id="atributo_valor_4203_link" class="atributo_valor_link">Últimos 15 días<\/span><\/td>');xhtml_buscador.push('<\/tr>');Buscador.atributos[Buscador.atributos.length-1].valores.push(4204);xhtml_buscador.push('<tr>');xhtml_buscador.push('  <td valign="top">');xhtml_buscador.push('    <input id="atributo_valor_4204_control" name="atributo_valor_42" type="radio" class="radio" value="4204" />');xhtml_buscador.push('  <\/td>');xhtml_buscador.push('  <td class="atributo_valor" valign="top"><span id="atributo_valor_4204_link" class="atributo_valor_link">Últimos 7 días<\/span><\/td>');xhtml_buscador.push('<\/tr>');xhtml_buscador.push('<\/table>');xhtml_buscador.push('<div style="clear: both"><\/div>');xhtml_buscador.push('  <\/div>');xhtml_buscador.push('<\/li>');Buscador.secciones.push({"id_seccion":1});xhtml_buscador.push('<li id="seccion_1" class="seccion_fila_x">');xhtml_buscador.push('  <div class="seccion_nombre">Datos Generales<\/div>');xhtml_buscador.push('<\/li>');Buscador.atributos.push({'id_atributo':3,'id_tipo':1,'id_activo':1,'valores':[],'slider':{}});xhtml_buscador.push('<li id="atributo_3" class="atributo">');xhtml_buscador.push('  <div class="atributo_root">');xhtml_buscador.push('    <table cellspacing="0" cellpadding="0">');xhtml_buscador.push('      <tr>');xhtml_buscador.push('        <td valign="top"><img id="atributo_3_masmenos" src="http://gfx-1.photoescorts.com/pe/gfx/transparente.gif" class="atributo_0" alt="" /><\/td>');xhtml_buscador.push('        <td valign="top"><span id="atributo_3_nombre" class="atributo_nombre">Agencia<\/span><\/td>');xhtml_buscador.push('      <\/tr>');xhtml_buscador.push('    <\/table>');xhtml_buscador.push('    <input id="atributo_3_expand" type="hidden" value="1" />');xhtml_buscador.push('    <input id="atributo_3_set"  type="hidden" value="0"   />');xhtml_buscador.push('  <\/div>');xhtml_buscador.push('  <div id="atributo_3_contadmin" class="on_block">');xhtml_buscador.push('<table class="atributo_checkboxes" cellspacing="0" cellpadding="0">');Buscador.atributos[Buscador.atributos.length-1].valores.push(301);xhtml_buscador.push('<tr>');xhtml_buscador.push('  <td valign="top">');xhtml_buscador.push('    <input id="atributo_valor_301_control" type="checkbox" value="1" checked="checked" />');xhtml_buscador.push('  <\/td>');xhtml_buscador.push('  <td class="atributo_valor" valign="top"><span id="atributo_valor_301_link" class="atributo_valor_link">Escort independiente<\/span><\/td>');xhtml_buscador.push('<\/tr>');Buscador.atributos[Buscador.atributos.length-1].valores.push(302);xhtml_buscador.push('<tr>');xhtml_buscador.push('  <td valign="top">');xhtml_buscador.push('    <input id="atributo_valor_302_control" type="checkbox" value="1" checked="checked" />');xhtml_buscador.push('  <\/td>');xhtml_buscador.push('  <td class="atributo_valor" valign="top"><span id="atributo_valor_302_link" class="atributo_valor_link">Escort de agencia<\/span><\/td>');xhtml_buscador.push('<\/tr>');xhtml_buscador.push('<\/table>');xhtml_buscador.push('<div style="clear: both"><\/div>');xhtml_buscador.push('  <\/div>');xhtml_buscador.push('<\/li>');Buscador.atributos.push({'id_atributo':2,'id_tipo':1,'id_activo':2,'valores':[],'slider':{}});xhtml_buscador.push('<li id="atributo_2" class="atributo">');xhtml_buscador.push('  <div class="atributo_root">');xhtml_buscador.push('    <table cellspacing="0" cellpadding="0">');xhtml_buscador.push('      <tr>');xhtml_buscador.push('        <td valign="top"><img id="atributo_2_masmenos" src="http://gfx-1.photoescorts.com/pe/gfx/transparente.gif" class="atributo_0" alt="" /><\/td>');xhtml_buscador.push('        <td valign="top"><span id="atributo_2_nombre" class="atributo_nombre">Orientación<\/span><\/td>');xhtml_buscador.push('      <\/tr>');xhtml_buscador.push('    <\/table>');xhtml_buscador.push('    <input id="atributo_2_expand" type="hidden" value="1" />');xhtml_buscador.push('    <input id="atributo_2_set"  type="hidden" value="0"   />');xhtml_buscador.push('  <\/div>');xhtml_buscador.push('  <div id="atributo_2_contadmin" class="on_block">');xhtml_buscador.push('<table class="atributo_checkboxes" cellspacing="0" cellpadding="0">');Buscador.atributos[Buscador.atributos.length-1].valores.push(201);xhtml_buscador.push('<tr>');xhtml_buscador.push('  <td valign="top">');xhtml_buscador.push('    <input id="atributo_valor_201_control" type="checkbox" value="1" checked="checked" />');xhtml_buscador.push('  <\/td>');xhtml_buscador.push('  <td class="atributo_valor" valign="top"><span id="atributo_valor_201_link" class="atributo_valor_link">Heterosexual<\/span><\/td>');xhtml_buscador.push('<\/tr>');Buscador.atributos[Buscador.atributos.length-1].valores.push(202);xhtml_buscador.push('<tr>');xhtml_buscador.push('  <td valign="top">');xhtml_buscador.push('    <input id="atributo_valor_202_control" type="checkbox" value="1" checked="checked" />');xhtml_buscador.push('  <\/td>');xhtml_buscador.push('  <td class="atributo_valor" valign="top"><span id="atributo_valor_202_link" class="atributo_valor_link">Bisexual<\/span><\/td>');xhtml_buscador.push('<\/tr>');xhtml_buscador.push('<\/table>');xhtml_buscador.push('<div style="clear: both"><\/div>');xhtml_buscador.push('  <\/div>');xhtml_buscador.push('<\/li>');Buscador.atributos.push({'id_atributo':4,'id_tipo':4,'id_activo':1,'valores':[],'slider':{}});xhtml_buscador.push('<li id="atributo_4" class="atributo">');xhtml_buscador.push('  <div class="atributo_root">');xhtml_buscador.push('    <table cellspacing="0" cellpadding="0">');xhtml_buscador.push('      <tr>');xhtml_buscador.push('        <td valign="top"><img id="atributo_4_masmenos" src="http://gfx-1.photoescorts.com/pe/gfx/transparente.gif" class="atributo_0" alt="" /><\/td>');xhtml_buscador.push('        <td valign="top"><span id="atributo_4_nombre" class="atributo_nombre">Edad<\/span><\/td>');xhtml_buscador.push('      <\/tr>');xhtml_buscador.push('    <\/table>');xhtml_buscador.push('    <input id="atributo_4_expand" type="hidden" value="1" />');xhtml_buscador.push('    <input id="atributo_4_set"  type="hidden" value="0"   />');xhtml_buscador.push('  <\/div>');xhtml_buscador.push('  <div id="atributo_4_contadmin" class="on_block">');var idx_atributo=Buscador.atributos.length-1;Buscador.atributos[idx_atributo].slider={'valores':{'min':20,'max':24,'cur':{'min':'','max':''}},'escala':(24-20)/(ATRIBUTO_SLIDER_LENGTH-1),'incremento_valor':1,'formato_valor':"#VALOR# años"};xhtml_buscador.push('<div class="atributo_slider_discretos_off">');xhtml_buscador.push('  <div class="atributo_slider_valores">');xhtml_buscador.push('    <span id="atributo_4_slider_valor_min" class="atributo_slider_valor_min"><\/span>');xhtml_buscador.push('      <span id="atributo_4_slider_valor_max" class="atributo_slider_valor_max"><\/span>');xhtml_buscador.push('  <\/div>');xhtml_buscador.push('  <div class="atributo_slider_carril">');xhtml_buscador.push('    <img id="atributo_4_slider_puntero_min" class="atributo_slider_puntero" src="http://gfx-2.photoescorts.com/pe/gfx/slider_puntero.gif" alt="" />');xhtml_buscador.push('    <img id="atributo_4_slider_puntero_max" class="atributo_slider_puntero" src="http://gfx-2.photoescorts.com/pe/gfx/slider_puntero.gif" alt="" />');xhtml_buscador.push('  <\/div>');xhtml_buscador.push('  <div style="clear: both"><\/div>');xhtml_buscador.push('<\/div>');xhtml_buscador.push('  <\/div>');xhtml_buscador.push('<\/li>');Buscador.atributos.push({'id_atributo':38,'id_tipo':2,'id_activo':2,'valores':[],'slider':{}});xhtml_buscador.push('<li id="atributo_38" class="atributo">');xhtml_buscador.push('  <div class="atributo_root">');xhtml_buscador.push('    <table cellspacing="0" cellpadding="0">');xhtml_buscador.push('      <tr>');xhtml_buscador.push('        <td valign="top"><img id="atributo_38_masmenos" src="http://gfx-1.photoescorts.com/pe/gfx/transparente.gif" class="atributo_0" alt="" /><\/td>');xhtml_buscador.push('        <td valign="top"><span id="atributo_38_nombre" class="atributo_nombre">Idiomas<\/span><\/td>');xhtml_buscador.push('      <\/tr>');xhtml_buscador.push('    <\/table>');xhtml_buscador.push('    <input id="atributo_38_expand" type="hidden" value="1" />');xhtml_buscador.push('    <input id="atributo_38_set"  type="hidden" value="0"   />');xhtml_buscador.push('  <\/div>');xhtml_buscador.push('  <div id="atributo_38_contadmin" class="on_block">');xhtml_buscador.push('<table class="atributo_checkboxes" cellspacing="0" cellpadding="0">');Buscador.atributos[Buscador.atributos.length-1].valores.push(3801);xhtml_buscador.push('<tr>');xhtml_buscador.push('  <td valign="top">');xhtml_buscador.push('    <input id="atributo_valor_3801_control" type="checkbox" value="1" />');xhtml_buscador.push('  <\/td>');xhtml_buscador.push('  <td class="atributo_valor" valign="top"><span id="atributo_valor_3801_link" class="atributo_valor_link">Español<\/span><\/td>');xhtml_buscador.push('<\/tr>');Buscador.atributos[Buscador.atributos.length-1].valores.push(3802);xhtml_buscador.push('<tr>');xhtml_buscador.push('  <td valign="top">');xhtml_buscador.push('    <input id="atributo_valor_3802_control" type="checkbox" value="1" />');xhtml_buscador.push('  <\/td>');xhtml_buscador.push('  <td class="atributo_valor" valign="top"><span id="atributo_valor_3802_link" class="atributo_valor_link">Català<\/span><\/td>');xhtml_buscador.push('<\/tr>');Buscador.atributos[Buscador.atributos.length-1].valores.push(3803);xhtml_buscador.push('<tr>');xhtml_buscador.push('  <td valign="top">');xhtml_buscador.push('    <input id="atributo_valor_3803_control" type="checkbox" value="1" />');xhtml_buscador.push('  <\/td>');xhtml_buscador.push('  <td class="atributo_valor" valign="top"><span id="atributo_valor_3803_link" class="atributo_valor_link">Inglés<\/span><\/td>');xhtml_buscador.push('<\/tr>');Buscador.atributos[Buscador.atributos.length-1].valores.push(3804);xhtml_buscador.push('<tr>');xhtml_buscador.push('  <td valign="top">');xhtml_buscador.push('    <input id="atributo_valor_3804_control" type="checkbox" value="1" />');xhtml_buscador.push('  <\/td>');xhtml_buscador.push('  <td class="atributo_valor" valign="top"><span id="atributo_valor_3804_link" class="atributo_valor_link">Francés<\/span><\/td>');xhtml_buscador.push('<\/tr>');Buscador.atributos[Buscador.atributos.length-1].valores.push(3805);xhtml_buscador.push('<tr>');xhtml_buscador.push('  <td valign="top">');xhtml_buscador.push('    <input id="atributo_valor_3805_control" type="checkbox" value="1" />');xhtml_buscador.push('  <\/td>');xhtml_buscador.push('  <td class="atributo_valor" valign="top"><span id="atributo_valor_3805_link" class="atributo_valor_link">Alemán<\/span><\/td>');xhtml_buscador.push('<\/tr>');Buscador.atributos[Buscador.atributos.length-1].valores.push(3806);xhtml_buscador.push('<tr>');xhtml_buscador.push('  <td valign="top">');xhtml_buscador.push('    <input id="atributo_valor_3806_control" type="checkbox" value="1" />');xhtml_buscador.push('  <\/td>');xhtml_buscador.push('  <td class="atributo_valor" valign="top"><span id="atributo_valor_3806_link" class="atributo_valor_link">Italiano<\/span><\/td>');xhtml_buscador.push('<\/tr>');Buscador.atributos[Buscador.atributos.length-1].valores.push(3807);xhtml_buscador.push('<tr>');xhtml_buscador.push('  <td valign="top">');xhtml_buscador.push('    <input id="atributo_valor_3807_control" type="checkbox" value="1" />');xhtml_buscador.push('  <\/td>');xhtml_buscador.push('  <td class="atributo_valor" valign="top"><span id="atributo_valor_3807_link" class="atributo_valor_link">Portugués<\/span><\/td>');xhtml_buscador.push('<\/tr>');Buscador.atributos[Buscador.atributos.length-1].valores.push(3808);xhtml_buscador.push('<tr>');xhtml_buscador.push('  <td valign="top">');xhtml_buscador.push('    <input id="atributo_valor_3808_control" type="checkbox" value="1" />');xhtml_buscador.push('  <\/td>');xhtml_buscador.push('  <td class="atributo_valor" valign="top"><span id="atributo_valor_3808_link" class="atributo_valor_link">Ruso<\/span><\/td>');xhtml_buscador.push('<\/tr>');xhtml_buscador.push('<\/table>');xhtml_buscador.push('<div style="clear: both"><\/div>');xhtml_buscador.push('  <\/div>');xhtml_buscador.push('<\/li>');Buscador.atributos.push({'id_atributo':26,'id_tipo':2,'id_activo':2,'valores':[],'slider':{}});xhtml_buscador.push('<li id="atributo_26" class="atributo">');xhtml_buscador.push('  <div class="atributo_root">');xhtml_buscador.push('    <table cellspacing="0" cellpadding="0">');xhtml_buscador.push('      <tr>');xhtml_buscador.push('        <td valign="top"><img id="atributo_26_masmenos" src="http://gfx-1.photoescorts.com/pe/gfx/transparente.gif" class="atributo_0" alt="" /><\/td>');xhtml_buscador.push('        <td valign="top"><span id="atributo_26_nombre" class="atributo_nombre">Profesión<\/span><\/td>');xhtml_buscador.push('      <\/tr>');xhtml_buscador.push('    <\/table>');xhtml_buscador.push('    <input id="atributo_26_expand" type="hidden" value="1" />');xhtml_buscador.push('    <input id="atributo_26_set"  type="hidden" value="0"   />');xhtml_buscador.push('  <\/div>');xhtml_buscador.push('  <div id="atributo_26_contadmin" class="on_block">');xhtml_buscador.push('<table class="atributo_checkboxes" cellspacing="0" cellpadding="0">');Buscador.atributos[Buscador.atributos.length-1].valores.push(2601);xhtml_buscador.push('<tr>');xhtml_buscador.push('  <td valign="top">');xhtml_buscador.push('    <input id="atributo_valor_2601_control" type="checkbox" value="1" />');xhtml_buscador.push('  <\/td>');xhtml_buscador.push('  <td class="atributo_valor" valign="top"><span id="atributo_valor_2601_link" class="atributo_valor_link">Modelo<\/span><\/td>');xhtml_buscador.push('<\/tr>');Buscador.atributos[Buscador.atributos.length-1].valores.push(2606);xhtml_buscador.push('<tr>');xhtml_buscador.push('  <td valign="top">');xhtml_buscador.push('    <input id="atributo_valor_2606_control" type="checkbox" value="1" />');xhtml_buscador.push('  <\/td>');xhtml_buscador.push('  <td class="atributo_valor" valign="top"><span id="atributo_valor_2606_link" class="atributo_valor_link">Azafata<\/span><\/td>');xhtml_buscador.push('<\/tr>');Buscador.atributos[Buscador.atributos.length-1].valores.push(2605);xhtml_buscador.push('<tr>');xhtml_buscador.push('  <td valign="top">');xhtml_buscador.push('    <input id="atributo_valor_2605_control" type="checkbox" value="1" />');xhtml_buscador.push('  <\/td>');xhtml_buscador.push('  <td class="atributo_valor" valign="top"><span id="atributo_valor_2605_link" class="atributo_valor_link">Secretaria<\/span><\/td>');xhtml_buscador.push('<\/tr>');Buscador.atributos[Buscador.atributos.length-1].valores.push(2614);xhtml_buscador.push('<tr>');xhtml_buscador.push('  <td valign="top">');xhtml_buscador.push('    <input id="atributo_valor_2614_control" type="checkbox" value="1" />');xhtml_buscador.push('  <\/td>');xhtml_buscador.push('  <td class="atributo_valor" valign="top"><span id="atributo_valor_2614_link" class="atributo_valor_link">Comercial<\/span><\/td>');xhtml_buscador.push('<\/tr>');Buscador.atributos[Buscador.atributos.length-1].valores.push(2602);xhtml_buscador.push('<tr>');xhtml_buscador.push('  <td valign="top">');xhtml_buscador.push('    <input id="atributo_valor_2602_control" type="checkbox" value="1" />');xhtml_buscador.push('  <\/td>');xhtml_buscador.push('  <td class="atributo_valor" valign="top"><span id="atributo_valor_2602_link" class="atributo_valor_link">Estudiante<\/span><\/td>');xhtml_buscador.push('<\/tr>');Buscador.atributos[Buscador.atributos.length-1].valores.push(2615);xhtml_buscador.push('<tr>');xhtml_buscador.push('  <td valign="top">');xhtml_buscador.push('    <input id="atributo_valor_2615_control" type="checkbox" value="1" />');xhtml_buscador.push('  <\/td>');xhtml_buscador.push('  <td class="atributo_valor" valign="top"><span id="atributo_valor_2615_link" class="atributo_valor_link">Profesora<\/span><\/td>');xhtml_buscador.push('<\/tr>');Buscador.atributos[Buscador.atributos.length-1].valores.push(2607);xhtml_buscador.push('<tr>');xhtml_buscador.push('  <td valign="top">');xhtml_buscador.push('    <input id="atributo_valor_2607_control" type="checkbox" value="1" />');xhtml_buscador.push('  <\/td>');xhtml_buscador.push('  <td class="atributo_valor" valign="top"><span id="atributo_valor_2607_link" class="atributo_valor_link">Masajista<\/span><\/td>');xhtml_buscador.push('<\/tr>');Buscador.atributos[Buscador.atributos.length-1].valores.push(2613);xhtml_buscador.push('<tr>');xhtml_buscador.push('  <td valign="top">');xhtml_buscador.push('    <input id="atributo_valor_2613_control" type="checkbox" value="1" />');xhtml_buscador.push('  <\/td>');xhtml_buscador.push('  <td class="atributo_valor" valign="top"><span id="atributo_valor_2613_link" class="atributo_valor_link">Psicóloga<\/span><\/td>');xhtml_buscador.push('<\/tr>');Buscador.atributos[Buscador.atributos.length-1].valores.push(2608);xhtml_buscador.push('<tr>');xhtml_buscador.push('  <td valign="top">');xhtml_buscador.push('    <input id="atributo_valor_2608_control" type="checkbox" value="1" />');xhtml_buscador.push('  <\/td>');xhtml_buscador.push('  <td class="atributo_valor" valign="top"><span id="atributo_valor_2608_link" class="atributo_valor_link">Enfermera<\/span><\/td>');xhtml_buscador.push('<\/tr>');Buscador.atributos[Buscador.atributos.length-1].valores.push(2612);xhtml_buscador.push('<tr>');xhtml_buscador.push('  <td valign="top">');xhtml_buscador.push('    <input id="atributo_valor_2612_control" type="checkbox" value="1" />');xhtml_buscador.push('  <\/td>');xhtml_buscador.push('  <td class="atributo_valor" valign="top"><span id="atributo_valor_2612_link" class="atributo_valor_link">Gogó de Discoteca<\/span><\/td>');xhtml_buscador.push('<\/tr>');Buscador.atributos[Buscador.atributos.length-1].valores.push(2609);xhtml_buscador.push('<tr>');xhtml_buscador.push('  <td valign="top">');xhtml_buscador.push('    <input id="atributo_valor_2609_control" type="checkbox" value="1" />');xhtml_buscador.push('  <\/td>');xhtml_buscador.push('  <td class="atributo_valor" valign="top"><span id="atributo_valor_2609_link" class="atributo_valor_link">Stripper<\/span><\/td>');xhtml_buscador.push('<\/tr>');Buscador.atributos[Buscador.atributos.length-1].valores.push(2604);xhtml_buscador.push('<tr>');xhtml_buscador.push('  <td valign="top">');xhtml_buscador.push('    <input id="atributo_valor_2604_control" type="checkbox" value="1" />');xhtml_buscador.push('  <\/td>');xhtml_buscador.push('  <td class="atributo_valor" valign="top"><span id="atributo_valor_2604_link" class="atributo_valor_link">Actriz porno<\/span><\/td>');xhtml_buscador.push('<\/tr>');Buscador.atributos[Buscador.atributos.length-1].valores.push(2610);xhtml_buscador.push('<tr>');xhtml_buscador.push('  <td valign="top">');xhtml_buscador.push('    <input id="atributo_valor_2610_control" type="checkbox" value="1" />');xhtml_buscador.push('  <\/td>');xhtml_buscador.push('  <td class="atributo_valor" valign="top"><span id="atributo_valor_2610_link" class="atributo_valor_link">Ingeniera<\/span><\/td>');xhtml_buscador.push('<\/tr>');Buscador.atributos[Buscador.atributos.length-1].valores.push(2611);xhtml_buscador.push('<tr>');xhtml_buscador.push('  <td valign="top">');xhtml_buscador.push('    <input id="atributo_valor_2611_control" type="checkbox" value="1" />');xhtml_buscador.push('  <\/td>');xhtml_buscador.push('  <td class="atributo_valor" valign="top"><span id="atributo_valor_2611_link" class="atributo_valor_link">Ejecutiva<\/span><\/td>');xhtml_buscador.push('<\/tr>');xhtml_buscador.push('<\/table>');xhtml_buscador.push('<div style="clear: both"><\/div>');xhtml_buscador.push('  <\/div>');xhtml_buscador.push('<\/li>');Buscador.secciones.push({"id_seccion":4});xhtml_buscador.push('<li id="seccion_4" class="seccion_fila_x">');xhtml_buscador.push('  <div class="seccion_nombre">Tarifas<\/div>');xhtml_buscador.push('<\/li>');Buscador.atributos.push({'id_atributo':5,'id_tipo':4,'id_activo':1,'valores':[],'slider':{}});xhtml_buscador.push('<li id="atributo_5" class="atributo">');xhtml_buscador.push('  <div class="atributo_root">');xhtml_buscador.push('    <table cellspacing="0" cellpadding="0">');xhtml_buscador.push('      <tr>');xhtml_buscador.push('        <td valign="top"><img id="atributo_5_masmenos" src="http://gfx-1.photoescorts.com/pe/gfx/transparente.gif" class="atributo_0" alt="" /><\/td>');xhtml_buscador.push('        <td valign="top"><span id="atributo_5_nombre" class="atributo_nombre">Tarifa<\/span><\/td>');xhtml_buscador.push('      <\/tr>');xhtml_buscador.push('    <\/table>');xhtml_buscador.push('    <input id="atributo_5_expand" type="hidden" value="1" />');xhtml_buscador.push('    <input id="atributo_5_set"  type="hidden" value="0"   />');xhtml_buscador.push('  <\/div>');xhtml_buscador.push('  <div id="atributo_5_contadmin" class="on_block">');var idx_atributo=Buscador.atributos.length-1;Buscador.atributos[idx_atributo].slider={'valores':{'min':250,'max':250,'cur':{'min':'','max':''}},'escala':(250-250)/(ATRIBUTO_SLIDER_LENGTH-1),'incremento_valor':10,'formato_valor':"#VALOR# €"};xhtml_buscador.push('<div class="atributo_slider_discretos_on">');xhtml_buscador.push('  <div class="atributo_slider_valores">');xhtml_buscador.push('    <span id="atributo_5_slider_valor_min" class="atributo_slider_valor_min"><\/span>');xhtml_buscador.push('      <span id="atributo_5_slider_valor_max" class="atributo_slider_valor_max"><\/span>');xhtml_buscador.push('  <\/div>');xhtml_buscador.push('  <div class="atributo_slider_carril">');xhtml_buscador.push('    <img id="atributo_5_slider_puntero_min" class="atributo_slider_puntero" src="http://gfx-2.photoescorts.com/pe/gfx/slider_puntero.gif" alt="" />');xhtml_buscador.push('    <img id="atributo_5_slider_puntero_max" class="atributo_slider_puntero" src="http://gfx-2.photoescorts.com/pe/gfx/slider_puntero.gif" alt="" />');xhtml_buscador.push('  <\/div>');xhtml_buscador.push('  <div style="clear: both"><\/div>');xhtml_buscador.push('<\/div>');xhtml_buscador.push('<table class="atributo_checkboxes" cellspacing="0" cellpadding="0">');Buscador.atributos[Buscador.atributos.length-1].valores.push(501);xhtml_buscador.push('<tr>');xhtml_buscador.push('  <td valign="top">');xhtml_buscador.push('    <input id="atributo_valor_501_control" type="checkbox" value="1" checked="checked" />');xhtml_buscador.push('  <\/td>');xhtml_buscador.push('  <td class="atributo_valor" valign="top"><span id="atributo_valor_501_link" class="atributo_valor_link">Escorts sin tarifas<\/span><\/td>');xhtml_buscador.push('<\/tr>');xhtml_buscador.push('<\/table>');xhtml_buscador.push('<div style="clear: both"><\/div>');xhtml_buscador.push('  <\/div>');xhtml_buscador.push('<\/li>');Buscador.atributos.push({'id_atributo':10,'id_tipo':1,'id_activo':2,'valores':[],'slider':{}});xhtml_buscador.push('<li id="atributo_10" class="atributo">');xhtml_buscador.push('  <div class="atributo_root">');xhtml_buscador.push('    <table cellspacing="0" cellpadding="0">');xhtml_buscador.push('      <tr>');xhtml_buscador.push('        <td valign="top"><img id="atributo_10_masmenos" src="http://gfx-1.photoescorts.com/pe/gfx/transparente.gif" class="atributo_0" alt="" /><\/td>');xhtml_buscador.push('        <td valign="top"><span id="atributo_10_nombre" class="atributo_nombre">Forma Pago<\/span><\/td>');xhtml_buscador.push('      <\/tr>');xhtml_buscador.push('    <\/table>');xhtml_buscador.push('    <input id="atributo_10_expand" type="hidden" value="1" />');xhtml_buscador.push('    <input id="atributo_10_set"  type="hidden" value="0"   />');xhtml_buscador.push('  <\/div>');xhtml_buscador.push('  <div id="atributo_10_contadmin" class="on_block">');xhtml_buscador.push('<table class="atributo_checkboxes" cellspacing="0" cellpadding="0">');Buscador.atributos[Buscador.atributos.length-1].valores.push(1001);xhtml_buscador.push('<tr>');xhtml_buscador.push('  <td valign="top">');xhtml_buscador.push('    <input id="atributo_valor_1001_control" type="checkbox" value="1" checked="checked" />');xhtml_buscador.push('  <\/td>');xhtml_buscador.push('  <td class="atributo_valor" valign="top"><span id="atributo_valor_1001_link" class="atributo_valor_link">Efectivo<\/span><\/td>');xhtml_buscador.push('<\/tr>');Buscador.atributos[Buscador.atributos.length-1].valores.push(1002);xhtml_buscador.push('<tr>');xhtml_buscador.push('  <td valign="top">');xhtml_buscador.push('    <input id="atributo_valor_1002_control" type="checkbox" value="1" checked="checked" />');xhtml_buscador.push('  <\/td>');xhtml_buscador.push('  <td class="atributo_valor" valign="top"><span id="atributo_valor_1002_link" class="atributo_valor_link">Tarjeta<\/span><\/td>');xhtml_buscador.push('<\/tr>');Buscador.atributos[Buscador.atributos.length-1].valores.push(1003);xhtml_buscador.push('<tr>');xhtml_buscador.push('  <td valign="top">');xhtml_buscador.push('    <input id="atributo_valor_1003_control" type="checkbox" value="1" checked="checked" />');xhtml_buscador.push('  <\/td>');xhtml_buscador.push('  <td class="atributo_valor" valign="top"><span id="atributo_valor_1003_link" class="atributo_valor_link">Transferencia<\/span><\/td>');xhtml_buscador.push('<\/tr>');xhtml_buscador.push('<\/table>');xhtml_buscador.push('<div style="clear: both"><\/div>');xhtml_buscador.push('  <\/div>');xhtml_buscador.push('<\/li>');Buscador.secciones.push({"id_seccion":2});xhtml_buscador.push('<li id="seccion_2" class="seccion_fila_x">');xhtml_buscador.push('  <div class="seccion_nombre">Apariencia<\/div>');xhtml_buscador.push('<\/li>');Buscador.atributos.push({'id_atributo':6,'id_tipo':1,'id_activo':1,'valores':[],'slider':{}});xhtml_buscador.push('<li id="atributo_6" class="atributo">');xhtml_buscador.push('  <div class="atributo_root">');xhtml_buscador.push('    <table cellspacing="0" cellpadding="0">');xhtml_buscador.push('      <tr>');xhtml_buscador.push('        <td valign="top"><img id="atributo_6_masmenos" src="http://gfx-1.photoescorts.com/pe/gfx/transparente.gif" class="atributo_0" alt="" /><\/td>');xhtml_buscador.push('        <td valign="top"><span id="atributo_6_nombre" class="atributo_nombre">Color Pelo<\/span><\/td>');xhtml_buscador.push('      <\/tr>');xhtml_buscador.push('    <\/table>');xhtml_buscador.push('    <input id="atributo_6_expand" type="hidden" value="1" />');xhtml_buscador.push('    <input id="atributo_6_set"  type="hidden" value="0"   />');xhtml_buscador.push('  <\/div>');xhtml_buscador.push('  <div id="atributo_6_contadmin" class="on_block">');xhtml_buscador.push('<table class="atributo_checkboxes" cellspacing="0" cellpadding="0">');Buscador.atributos[Buscador.atributos.length-1].valores.push(601);xhtml_buscador.push('<tr>');xhtml_buscador.push('  <td valign="top">');xhtml_buscador.push('    <input id="atributo_valor_601_control" type="checkbox" value="1" checked="checked" />');xhtml_buscador.push('  <\/td>');xhtml_buscador.push('  <td class="atributo_valor" valign="top"><span id="atributo_valor_601_link" class="atributo_valor_link">Rubio<\/span><\/td>');xhtml_buscador.push('<\/tr>');Buscador.atributos[Buscador.atributos.length-1].valores.push(602);xhtml_buscador.push('<tr>');xhtml_buscador.push('  <td valign="top">');xhtml_buscador.push('    <input id="atributo_valor_602_control" type="checkbox" value="1" checked="checked" />');xhtml_buscador.push('  <\/td>');xhtml_buscador.push('  <td class="atributo_valor" valign="top"><span id="atributo_valor_602_link" class="atributo_valor_link">Pelirrojo<\/span><\/td>');xhtml_buscador.push('<\/tr>');Buscador.atributos[Buscador.atributos.length-1].valores.push(603);xhtml_buscador.push('<tr>');xhtml_buscador.push('  <td valign="top">');xhtml_buscador.push('    <input id="atributo_valor_603_control" type="checkbox" value="1" checked="checked" />');xhtml_buscador.push('  <\/td>');xhtml_buscador.push('  <td class="atributo_valor" valign="top"><span id="atributo_valor_603_link" class="atributo_valor_link">Castaño<\/span><\/td>');xhtml_buscador.push('<\/tr>');Buscador.atributos[Buscador.atributos.length-1].valores.push(604);xhtml_buscador.push('<tr>');xhtml_buscador.push('  <td valign="top">');xhtml_buscador.push('    <input id="atributo_valor_604_control" type="checkbox" value="1" checked="checked" />');xhtml_buscador.push('  <\/td>');xhtml_buscador.push('  <td class="atributo_valor" valign="top"><span id="atributo_valor_604_link" class="atributo_valor_link">Negro<\/span><\/td>');xhtml_buscador.push('<\/tr>');xhtml_buscador.push('<\/table>');xhtml_buscador.push('<div style="clear: both"><\/div>');xhtml_buscador.push('  <\/div>');xhtml_buscador.push('<\/li>');Buscador.atributos.push({'id_atributo':8,'id_tipo':1,'id_activo':2,'valores':[],'slider':{}});xhtml_buscador.push('<li id="atributo_8" class="atributo">');xhtml_buscador.push('  <div class="atributo_root">');xhtml_buscador.push('    <table cellspacing="0" cellpadding="0">');xhtml_buscador.push('      <tr>');xhtml_buscador.push('        <td valign="top"><img id="atributo_8_masmenos" src="http://gfx-1.photoescorts.com/pe/gfx/transparente.gif" class="atributo_0" alt="" /><\/td>');xhtml_buscador.push('        <td valign="top"><span id="atributo_8_nombre" class="atributo_nombre">Longitud Pelo<\/span><\/td>');xhtml_buscador.push('      <\/tr>');xhtml_buscador.push('    <\/table>');xhtml_buscador.push('    <input id="atributo_8_expand" type="hidden" value="1" />');xhtml_buscador.push('    <input id="atributo_8_set"  type="hidden" value="0"   />');xhtml_buscador.push('  <\/div>');xhtml_buscador.push('  <div id="atributo_8_contadmin" class="on_block">');xhtml_buscador.push('<table class="atributo_checkboxes" cellspacing="0" cellpadding="0">');Buscador.atributos[Buscador.atributos.length-1].valores.push(802);xhtml_buscador.push('<tr>');xhtml_buscador.push('  <td valign="top">');xhtml_buscador.push('    <input id="atributo_valor_802_control" type="checkbox" value="1" checked="checked" />');xhtml_buscador.push('  <\/td>');xhtml_buscador.push('  <td class="atributo_valor" valign="top"><span id="atributo_valor_802_link" class="atributo_valor_link">Corto<\/span><\/td>');xhtml_buscador.push('<\/tr>');Buscador.atributos[Buscador.atributos.length-1].valores.push(803);xhtml_buscador.push('<tr>');xhtml_buscador.push('  <td valign="top">');xhtml_buscador.push('    <input id="atributo_valor_803_control" type="checkbox" value="1" checked="checked" />');xhtml_buscador.push('  <\/td>');xhtml_buscador.push('  <td class="atributo_valor" valign="top"><span id="atributo_valor_803_link" class="atributo_valor_link">Por los hombros<\/span><\/td>');xhtml_buscador.push('<\/tr>');Buscador.atributos[Buscador.atributos.length-1].valores.push(804);xhtml_buscador.push('<tr>');xhtml_buscador.push('  <td valign="top">');xhtml_buscador.push('    <input id="atributo_valor_804_control" type="checkbox" value="1" checked="checked" />');xhtml_buscador.push('  <\/td>');xhtml_buscador.push('  <td class="atributo_valor" valign="top"><span id="atributo_valor_804_link" class="atributo_valor_link">Media melena<\/span><\/td>');xhtml_buscador.push('<\/tr>');Buscador.atributos[Buscador.atributos.length-1].valores.push(805);xhtml_buscador.push('<tr>');xhtml_buscador.push('  <td valign="top">');xhtml_buscador.push('    <input id="atributo_valor_805_control" type="checkbox" value="1" checked="checked" />');xhtml_buscador.push('  <\/td>');xhtml_buscador.push('  <td class="atributo_valor" valign="top"><span id="atributo_valor_805_link" class="atributo_valor_link">Larga melena<\/span><\/td>');xhtml_buscador.push('<\/tr>');xhtml_buscador.push('<\/table>');xhtml_buscador.push('<div style="clear: both"><\/div>');xhtml_buscador.push('  <\/div>');xhtml_buscador.push('<\/li>');Buscador.atributos.push({'id_atributo':9,'id_tipo':1,'id_activo':2,'valores':[],'slider':{}});xhtml_buscador.push('<li id="atributo_9" class="atributo">');xhtml_buscador.push('  <div class="atributo_root">');xhtml_buscador.push('    <table cellspacing="0" cellpadding="0">');xhtml_buscador.push('      <tr>');xhtml_buscador.push('        <td valign="top"><img id="atributo_9_masmenos" src="http://gfx-1.photoescorts.com/pe/gfx/transparente.gif" class="atributo_0" alt="" /><\/td>');xhtml_buscador.push('        <td valign="top"><span id="atributo_9_nombre" class="atributo_nombre">Color Ojos<\/span><\/td>');xhtml_buscador.push('      <\/tr>');xhtml_buscador.push('    <\/table>');xhtml_buscador.push('    <input id="atributo_9_expand" type="hidden" value="1" />');xhtml_buscador.push('    <input id="atributo_9_set"  type="hidden" value="0"   />');xhtml_buscador.push('  <\/div>');xhtml_buscador.push('  <div id="atributo_9_contadmin" class="on_block">');xhtml_buscador.push('<table class="atributo_checkboxes" cellspacing="0" cellpadding="0">');Buscador.atributos[Buscador.atributos.length-1].valores.push(901);xhtml_buscador.push('<tr>');xhtml_buscador.push('  <td valign="top">');xhtml_buscador.push('    <input id="atributo_valor_901_control" type="checkbox" value="1" checked="checked" />');xhtml_buscador.push('  <\/td>');xhtml_buscador.push('  <td class="atributo_valor" valign="top"><span id="atributo_valor_901_link" class="atributo_valor_link">Azules<\/span><\/td>');xhtml_buscador.push('<\/tr>');Buscador.atributos[Buscador.atributos.length-1].valores.push(902);xhtml_buscador.push('<tr>');xhtml_buscador.push('  <td valign="top">');xhtml_buscador.push('    <input id="atributo_valor_902_control" type="checkbox" value="1" checked="checked" />');xhtml_buscador.push('  <\/td>');xhtml_buscador.push('  <td class="atributo_valor" valign="top"><span id="atributo_valor_902_link" class="atributo_valor_link">Verdes<\/span><\/td>');xhtml_buscador.push('<\/tr>');Buscador.atributos[Buscador.atributos.length-1].valores.push(905);xhtml_buscador.push('<tr>');xhtml_buscador.push('  <td valign="top">');xhtml_buscador.push('    <input id="atributo_valor_905_control" type="checkbox" value="1" checked="checked" />');xhtml_buscador.push('  <\/td>');xhtml_buscador.push('  <td class="atributo_valor" valign="top"><span id="atributo_valor_905_link" class="atributo_valor_link">Grises<\/span><\/td>');xhtml_buscador.push('<\/tr>');Buscador.atributos[Buscador.atributos.length-1].valores.push(903);xhtml_buscador.push('<tr>');xhtml_buscador.push('  <td valign="top">');xhtml_buscador.push('    <input id="atributo_valor_903_control" type="checkbox" value="1" checked="checked" />');xhtml_buscador.push('  <\/td>');xhtml_buscador.push('  <td class="atributo_valor" valign="top"><span id="atributo_valor_903_link" class="atributo_valor_link">Marrones<\/span><\/td>');xhtml_buscador.push('<\/tr>');Buscador.atributos[Buscador.atributos.length-1].valores.push(904);xhtml_buscador.push('<tr>');xhtml_buscador.push('  <td valign="top">');xhtml_buscador.push('    <input id="atributo_valor_904_control" type="checkbox" value="1" checked="checked" />');xhtml_buscador.push('  <\/td>');xhtml_buscador.push('  <td class="atributo_valor" valign="top"><span id="atributo_valor_904_link" class="atributo_valor_link">Negros<\/span><\/td>');xhtml_buscador.push('<\/tr>');xhtml_buscador.push('<\/table>');xhtml_buscador.push('<div style="clear: both"><\/div>');xhtml_buscador.push('  <\/div>');xhtml_buscador.push('<\/li>');Buscador.atributos.push({'id_atributo':11,'id_tipo':4,'id_activo':2,'valores':[],'slider':{}});xhtml_buscador.push('<li id="atributo_11" class="atributo">');xhtml_buscador.push('  <div class="atributo_root">');xhtml_buscador.push('    <table cellspacing="0" cellpadding="0">');xhtml_buscador.push('      <tr>');xhtml_buscador.push('        <td valign="top"><img id="atributo_11_masmenos" src="http://gfx-1.photoescorts.com/pe/gfx/transparente.gif" class="atributo_0" alt="" /><\/td>');xhtml_buscador.push('        <td valign="top"><span id="atributo_11_nombre" class="atributo_nombre">Estatura<\/span><\/td>');xhtml_buscador.push('      <\/tr>');xhtml_buscador.push('    <\/table>');xhtml_buscador.push('    <input id="atributo_11_expand" type="hidden" value="1" />');xhtml_buscador.push('    <input id="atributo_11_set"  type="hidden" value="0"   />');xhtml_buscador.push('  <\/div>');xhtml_buscador.push('  <div id="atributo_11_contadmin" class="on_block">');var idx_atributo=Buscador.atributos.length-1;Buscador.atributos[idx_atributo].slider={'valores':{'min':165,'max':168,'cur':{'min':'','max':''}},'escala':(168-165)/(ATRIBUTO_SLIDER_LENGTH-1),'incremento_valor':1,'formato_valor':"#VALOR# cm"};xhtml_buscador.push('<div class="atributo_slider_discretos_off">');xhtml_buscador.push('  <div class="atributo_slider_valores">');xhtml_buscador.push('    <span id="atributo_11_slider_valor_min" class="atributo_slider_valor_min"><\/span>');xhtml_buscador.push('      <span id="atributo_11_slider_valor_max" class="atributo_slider_valor_max"><\/span>');xhtml_buscador.push('  <\/div>');xhtml_buscador.push('  <div class="atributo_slider_carril">');xhtml_buscador.push('    <img id="atributo_11_slider_puntero_min" class="atributo_slider_puntero" src="http://gfx-2.photoescorts.com/pe/gfx/slider_puntero.gif" alt="" />');xhtml_buscador.push('    <img id="atributo_11_slider_puntero_max" class="atributo_slider_puntero" src="http://gfx-2.photoescorts.com/pe/gfx/slider_puntero.gif" alt="" />');xhtml_buscador.push('  <\/div>');xhtml_buscador.push('  <div style="clear: both"><\/div>');xhtml_buscador.push('<\/div>');xhtml_buscador.push('  <\/div>');xhtml_buscador.push('<\/li>');Buscador.atributos.push({'id_atributo':12,'id_tipo':4,'id_activo':2,'valores':[],'slider':{}});xhtml_buscador.push('<li id="atributo_12" class="atributo">');xhtml_buscador.push('  <div class="atributo_root">');xhtml_buscador.push('    <table cellspacing="0" cellpadding="0">');xhtml_buscador.push('      <tr>');xhtml_buscador.push('        <td valign="top"><img id="atributo_12_masmenos" src="http://gfx-1.photoescorts.com/pe/gfx/transparente.gif" class="atributo_0" alt="" /><\/td>');xhtml_buscador.push('        <td valign="top"><span id="atributo_12_nombre" class="atributo_nombre">Peso<\/span><\/td>');xhtml_buscador.push('      <\/tr>');xhtml_buscador.push('    <\/table>');xhtml_buscador.push('    <input id="atributo_12_expand" type="hidden" value="1" />');xhtml_buscador.push('    <input id="atributo_12_set"  type="hidden" value="0"   />');xhtml_buscador.push('  <\/div>');xhtml_buscador.push('  <div id="atributo_12_contadmin" class="on_block">');var idx_atributo=Buscador.atributos.length-1;Buscador.atributos[idx_atributo].slider={'valores':{'min':54,'max':55,'cur':{'min':'','max':''}},'escala':(55-54)/(ATRIBUTO_SLIDER_LENGTH-1),'incremento_valor':1,'formato_valor':"#VALOR# kg"};xhtml_buscador.push('<div class="atributo_slider_discretos_off">');xhtml_buscador.push('  <div class="atributo_slider_valores">');xhtml_buscador.push('    <span id="atributo_12_slider_valor_min" class="atributo_slider_valor_min"><\/span>');xhtml_buscador.push('      <span id="atributo_12_slider_valor_max" class="atributo_slider_valor_max"><\/span>');xhtml_buscador.push('  <\/div>');xhtml_buscador.push('  <div class="atributo_slider_carril">');xhtml_buscador.push('    <img id="atributo_12_slider_puntero_min" class="atributo_slider_puntero" src="http://gfx-2.photoescorts.com/pe/gfx/slider_puntero.gif" alt="" />');xhtml_buscador.push('    <img id="atributo_12_slider_puntero_max" class="atributo_slider_puntero" src="http://gfx-2.photoescorts.com/pe/gfx/slider_puntero.gif" alt="" />');xhtml_buscador.push('  <\/div>');xhtml_buscador.push('  <div style="clear: both"><\/div>');xhtml_buscador.push('<\/div>');xhtml_buscador.push('  <\/div>');xhtml_buscador.push('<\/li>');Buscador.atributos.push({'id_atributo':13,'id_tipo':4,'id_activo':1,'valores':[],'slider':{}});xhtml_buscador.push('<li id="atributo_13" class="atributo">');xhtml_buscador.push('  <div class="atributo_root">');xhtml_buscador.push('    <table cellspacing="0" cellpadding="0">');xhtml_buscador.push('      <tr>');xhtml_buscador.push('        <td valign="top"><img id="atributo_13_masmenos" src="http://gfx-1.photoescorts.com/pe/gfx/transparente.gif" class="atributo_0" alt="" /><\/td>');xhtml_buscador.push('        <td valign="top"><span id="atributo_13_nombre" class="atributo_nombre">Pecho<\/span><\/td>');xhtml_buscador.push('      <\/tr>');xhtml_buscador.push('    <\/table>');xhtml_buscador.push('    <input id="atributo_13_expand" type="hidden" value="1" />');xhtml_buscador.push('    <input id="atributo_13_set"  type="hidden" value="0"   />');xhtml_buscador.push('  <\/div>');xhtml_buscador.push('  <div id="atributo_13_contadmin" class="on_block">');var idx_atributo=Buscador.atributos.length-1;Buscador.atributos[idx_atributo].slider={'valores':{'min':90,'max':100,'cur':{'min':'','max':''}},'escala':(100-90)/(ATRIBUTO_SLIDER_LENGTH-1),'incremento_valor':5,'formato_valor':"#VALOR# cm"};xhtml_buscador.push('<div class="atributo_slider_discretos_off">');xhtml_buscador.push('  <div class="atributo_slider_valores">');xhtml_buscador.push('    <span id="atributo_13_slider_valor_min" class="atributo_slider_valor_min"><\/span>');xhtml_buscador.push('      <span id="atributo_13_slider_valor_max" class="atributo_slider_valor_max"><\/span>');xhtml_buscador.push('  <\/div>');xhtml_buscador.push('  <div class="atributo_slider_carril">');xhtml_buscador.push('    <img id="atributo_13_slider_puntero_min" class="atributo_slider_puntero" src="http://gfx-2.photoescorts.com/pe/gfx/slider_puntero.gif" alt="" />');xhtml_buscador.push('    <img id="atributo_13_slider_puntero_max" class="atributo_slider_puntero" src="http://gfx-2.photoescorts.com/pe/gfx/slider_puntero.gif" alt="" />');xhtml_buscador.push('  <\/div>');xhtml_buscador.push('  <div style="clear: both"><\/div>');xhtml_buscador.push('<\/div>');xhtml_buscador.push('  <\/div>');xhtml_buscador.push('<\/li>');Buscador.atributos.push({'id_atributo':16,'id_tipo':4,'id_activo':2,'valores':[],'slider':{}});xhtml_buscador.push('<li id="atributo_16" class="atributo">');xhtml_buscador.push('  <div class="atributo_root">');xhtml_buscador.push('    <table cellspacing="0" cellpadding="0">');xhtml_buscador.push('      <tr>');xhtml_buscador.push('        <td valign="top"><img id="atributo_16_masmenos" src="http://gfx-1.photoescorts.com/pe/gfx/transparente.gif" class="atributo_0" alt="" /><\/td>');xhtml_buscador.push('        <td valign="top"><span id="atributo_16_nombre" class="atributo_nombre">Cintura<\/span><\/td>');xhtml_buscador.push('      <\/tr>');xhtml_buscador.push('    <\/table>');xhtml_buscador.push('    <input id="atributo_16_expand" type="hidden" value="1" />');xhtml_buscador.push('    <input id="atributo_16_set"  type="hidden" value="0"   />');xhtml_buscador.push('  <\/div>');xhtml_buscador.push('  <div id="atributo_16_contadmin" class="on_block">');var idx_atributo=Buscador.atributos.length-1;Buscador.atributos[idx_atributo].slider={'valores':{'min':60,'max':60,'cur':{'min':'','max':''}},'escala':(60-60)/(ATRIBUTO_SLIDER_LENGTH-1),'incremento_valor':1,'formato_valor':"#VALOR# cm"};xhtml_buscador.push('<div class="atributo_slider_discretos_off">');xhtml_buscador.push('  <div class="atributo_slider_valores">');xhtml_buscador.push('    <span id="atributo_16_slider_valor_min" class="atributo_slider_valor_min"><\/span>');xhtml_buscador.push('      <span id="atributo_16_slider_valor_max" class="atributo_slider_valor_max"><\/span>');xhtml_buscador.push('  <\/div>');xhtml_buscador.push('  <div class="atributo_slider_carril">');xhtml_buscador.push('    <img id="atributo_16_slider_puntero_min" class="atributo_slider_puntero" src="http://gfx-2.photoescorts.com/pe/gfx/slider_puntero.gif" alt="" />');xhtml_buscador.push('    <img id="atributo_16_slider_puntero_max" class="atributo_slider_puntero" src="http://gfx-2.photoescorts.com/pe/gfx/slider_puntero.gif" alt="" />');xhtml_buscador.push('  <\/div>');xhtml_buscador.push('  <div style="clear: both"><\/div>');xhtml_buscador.push('<\/div>');xhtml_buscador.push('  <\/div>');xhtml_buscador.push('<\/li>');Buscador.atributos.push({'id_atributo':17,'id_tipo':4,'id_activo':2,'valores':[],'slider':{}});xhtml_buscador.push('<li id="atributo_17" class="atributo">');xhtml_buscador.push('  <div class="atributo_root">');xhtml_buscador.push('    <table cellspacing="0" cellpadding="0">');xhtml_buscador.push('      <tr>');xhtml_buscador.push('        <td valign="top"><img id="atributo_17_masmenos" src="http://gfx-1.photoescorts.com/pe/gfx/transparente.gif" class="atributo_0" alt="" /><\/td>');xhtml_buscador.push('        <td valign="top"><span id="atributo_17_nombre" class="atributo_nombre">Caderas<\/span><\/td>');xhtml_buscador.push('      <\/tr>');xhtml_buscador.push('    <\/table>');xhtml_buscador.push('    <input id="atributo_17_expand" type="hidden" value="1" />');xhtml_buscador.push('    <input id="atributo_17_set"  type="hidden" value="0"   />');xhtml_buscador.push('  <\/div>');xhtml_buscador.push('  <div id="atributo_17_contadmin" class="on_block">');var idx_atributo=Buscador.atributos.length-1;Buscador.atributos[idx_atributo].slider={'valores':{'min':90,'max':90,'cur':{'min':'','max':''}},'escala':(90-90)/(ATRIBUTO_SLIDER_LENGTH-1),'incremento_valor':1,'formato_valor':"#VALOR# cm"};xhtml_buscador.push('<div class="atributo_slider_discretos_off">');xhtml_buscador.push('  <div class="atributo_slider_valores">');xhtml_buscador.push('    <span id="atributo_17_slider_valor_min" class="atributo_slider_valor_min"><\/span>');xhtml_buscador.push('      <span id="atributo_17_slider_valor_max" class="atributo_slider_valor_max"><\/span>');xhtml_buscador.push('  <\/div>');xhtml_buscador.push('  <div class="atributo_slider_carril">');xhtml_buscador.push('    <img id="atributo_17_slider_puntero_min" class="atributo_slider_puntero" src="http://gfx-2.photoescorts.com/pe/gfx/slider_puntero.gif" alt="" />');xhtml_buscador.push('    <img id="atributo_17_slider_puntero_max" class="atributo_slider_puntero" src="http://gfx-2.photoescorts.com/pe/gfx/slider_puntero.gif" alt="" />');xhtml_buscador.push('  <\/div>');xhtml_buscador.push('  <div style="clear: both"><\/div>');xhtml_buscador.push('<\/div>');xhtml_buscador.push('  <\/div>');xhtml_buscador.push('<\/li>');Buscador.secciones.push({"id_seccion":5});xhtml_buscador.push('<li id="seccion_5" class="seccion_fila_x">');xhtml_buscador.push('  <div class="seccion_nombre">Servicios<\/div>');xhtml_buscador.push('<\/li>');Buscador.atributos.push({'id_atributo':23,'id_tipo':1,'id_activo':2,'valores':[],'slider':{}});xhtml_buscador.push('<li id="atributo_23" class="atributo">');xhtml_buscador.push('  <div class="atributo_root">');xhtml_buscador.push('    <table cellspacing="0" cellpadding="0">');xhtml_buscador.push('      <tr>');xhtml_buscador.push('        <td valign="top"><img id="atributo_23_masmenos" src="http://gfx-1.photoescorts.com/pe/gfx/transparente.gif" class="atributo_0" alt="" /><\/td>');xhtml_buscador.push('        <td valign="top"><span id="atributo_23_nombre" class="atributo_nombre">Lugar<\/span><\/td>');xhtml_buscador.push('      <\/tr>');xhtml_buscador.push('    <\/table>');xhtml_buscador.push('    <input id="atributo_23_expand" type="hidden" value="1" />');xhtml_buscador.push('    <input id="atributo_23_set"  type="hidden" value="0"   />');xhtml_buscador.push('  <\/div>');xhtml_buscador.push('  <div id="atributo_23_contadmin" class="on_block">');xhtml_buscador.push('<table class="atributo_checkboxes" cellspacing="0" cellpadding="0">');Buscador.atributos[Buscador.atributos.length-1].valores.push(2301);xhtml_buscador.push('<tr>');xhtml_buscador.push('  <td valign="top">');xhtml_buscador.push('    <input id="atributo_valor_2301_control" type="checkbox" value="1" checked="checked" />');xhtml_buscador.push('  <\/td>');xhtml_buscador.push('  <td class="atributo_valor" valign="top"><span id="atributo_valor_2301_link" class="atributo_valor_link">Apartamento<\/span><\/td>');xhtml_buscador.push('<\/tr>');Buscador.atributos[Buscador.atributos.length-1].valores.push(2302);xhtml_buscador.push('<tr>');xhtml_buscador.push('  <td valign="top">');xhtml_buscador.push('    <input id="atributo_valor_2302_control" type="checkbox" value="1" checked="checked" />');xhtml_buscador.push('  <\/td>');xhtml_buscador.push('  <td class="atributo_valor" valign="top"><span id="atributo_valor_2302_link" class="atributo_valor_link">Hotel<\/span><\/td>');xhtml_buscador.push('<\/tr>');Buscador.atributos[Buscador.atributos.length-1].valores.push(2303);xhtml_buscador.push('<tr>');xhtml_buscador.push('  <td valign="top">');xhtml_buscador.push('    <input id="atributo_valor_2303_control" type="checkbox" value="1" checked="checked" />');xhtml_buscador.push('  <\/td>');xhtml_buscador.push('  <td class="atributo_valor" valign="top"><span id="atributo_valor_2303_link" class="atributo_valor_link">Dirección cliente<\/span><\/td>');xhtml_buscador.push('<\/tr>');xhtml_buscador.push('<\/table>');xhtml_buscador.push('<div style="clear: both"><\/div>');xhtml_buscador.push('  <\/div>');xhtml_buscador.push('<\/li>');Buscador.atributos.push({'id_atributo':24,'id_tipo':3,'id_activo':2,'valores':[],'slider':{}});xhtml_buscador.push('<li id="atributo_24" class="atributo">');xhtml_buscador.push('  <div class="atributo_root">');xhtml_buscador.push('    <table cellspacing="0" cellpadding="0">');xhtml_buscador.push('      <tr>');xhtml_buscador.push('        <td valign="top"><img id="atributo_24_masmenos" src="http://gfx-1.photoescorts.com/pe/gfx/transparente.gif" class="atributo_0" alt="" /><\/td>');xhtml_buscador.push('        <td valign="top"><span id="atributo_24_nombre" class="atributo_nombre">Viajes<\/span><\/td>');xhtml_buscador.push('      <\/tr>');xhtml_buscador.push('    <\/table>');xhtml_buscador.push('    <input id="atributo_24_expand" type="hidden" value="1" />');xhtml_buscador.push('    <input id="atributo_24_set"  type="hidden" value="0"   />');xhtml_buscador.push('  <\/div>');xhtml_buscador.push('  <div id="atributo_24_contadmin" class="on_block">');xhtml_buscador.push('<table class="atributo_radios" cellspacing="0" cellpadding="0">');Buscador.atributos[Buscador.atributos.length-1].valores.push(2401);xhtml_buscador.push('<tr>');xhtml_buscador.push('  <td valign="top">');xhtml_buscador.push('    <input id="atributo_valor_2401_control" name="atributo_valor_24" type="radio" class="radio" value="2401" checked="checked" />');xhtml_buscador.push('  <\/td>');xhtml_buscador.push('  <td class="atributo_valor" valign="top"><span id="atributo_valor_2401_link" class="atributo_valor_link">No<\/span><\/td>');xhtml_buscador.push('<\/tr>');Buscador.atributos[Buscador.atributos.length-1].valores.push(2402);xhtml_buscador.push('<tr>');xhtml_buscador.push('  <td valign="top">');xhtml_buscador.push('    <input id="atributo_valor_2402_control" name="atributo_valor_24" type="radio" class="radio" value="2402" />');xhtml_buscador.push('  <\/td>');xhtml_buscador.push('  <td class="atributo_valor" valign="top"><span id="atributo_valor_2402_link" class="atributo_valor_link">Por España<\/span><\/td>');xhtml_buscador.push('<\/tr>');Buscador.atributos[Buscador.atributos.length-1].valores.push(2403);xhtml_buscador.push('<tr>');xhtml_buscador.push('  <td valign="top">');xhtml_buscador.push('    <input id="atributo_valor_2403_control" name="atributo_valor_24" type="radio" class="radio" value="2403" />');xhtml_buscador.push('  <\/td>');xhtml_buscador.push('  <td class="atributo_valor" valign="top"><span id="atributo_valor_2403_link" class="atributo_valor_link">Por Europa<\/span><\/td>');xhtml_buscador.push('<\/tr>');Buscador.atributos[Buscador.atributos.length-1].valores.push(2404);xhtml_buscador.push('<tr>');xhtml_buscador.push('  <td valign="top">');xhtml_buscador.push('    <input id="atributo_valor_2404_control" name="atributo_valor_24" type="radio" class="radio" value="2404" />');xhtml_buscador.push('  <\/td>');xhtml_buscador.push('  <td class="atributo_valor" valign="top"><span id="atributo_valor_2404_link" class="atributo_valor_link">Por todo el Mundo<\/span><\/td>');xhtml_buscador.push('<\/tr>');xhtml_buscador.push('<\/table>');xhtml_buscador.push('<div style="clear: both"><\/div>');xhtml_buscador.push('  <\/div>');xhtml_buscador.push('<\/li>');Buscador.atributos.push({'id_atributo':32,'id_tipo':2,'id_activo':1,'valores':[],'slider':{}});xhtml_buscador.push('<li id="atributo_32" class="atributo">');xhtml_buscador.push('  <div class="atributo_root">');xhtml_buscador.push('    <table cellspacing="0" cellpadding="0">');xhtml_buscador.push('      <tr>');xhtml_buscador.push('        <td valign="top"><img id="atributo_32_masmenos" src="http://gfx-1.photoescorts.com/pe/gfx/transparente.gif" class="atributo_0" alt="" /><\/td>');xhtml_buscador.push('        <td valign="top"><span id="atributo_32_nombre" class="atributo_nombre">Servicios<\/span><\/td>');xhtml_buscador.push('      <\/tr>');xhtml_buscador.push('    <\/table>');xhtml_buscador.push('    <input id="atributo_32_expand" type="hidden" value="1" />');xhtml_buscador.push('    <input id="atributo_32_set"  type="hidden" value="0"   />');xhtml_buscador.push('  <\/div>');xhtml_buscador.push('  <div id="atributo_32_contadmin" class="on_block">');xhtml_buscador.push('<table class="atributo_checkboxes" cellspacing="0" cellpadding="0">');Buscador.atributos[Buscador.atributos.length-1].valores.push(3206);xhtml_buscador.push('<tr>');xhtml_buscador.push('  <td valign="top">');xhtml_buscador.push('    <input id="atributo_valor_3206_control" type="checkbox" value="1" />');xhtml_buscador.push('  <\/td>');xhtml_buscador.push('  <td class="atributo_valor" valign="top"><span id="atributo_valor_3206_link" class="atributo_valor_link">Francés Natural<\/span><\/td>');xhtml_buscador.push('<\/tr>');Buscador.atributos[Buscador.atributos.length-1].valores.push(3203);xhtml_buscador.push('<tr>');xhtml_buscador.push('  <td valign="top">');xhtml_buscador.push('    <input id="atributo_valor_3203_control" type="checkbox" value="1" />');xhtml_buscador.push('  <\/td>');xhtml_buscador.push('  <td class="atributo_valor" valign="top"><span id="atributo_valor_3203_link" class="atributo_valor_link">Anal<\/span><\/td>');xhtml_buscador.push('<\/tr>');Buscador.atributos[Buscador.atributos.length-1].valores.push(3211);xhtml_buscador.push('<tr>');xhtml_buscador.push('  <td valign="top">');xhtml_buscador.push('    <input id="atributo_valor_3211_control" type="checkbox" value="1" />');xhtml_buscador.push('  <\/td>');xhtml_buscador.push('  <td class="atributo_valor" valign="top"><span id="atributo_valor_3211_link" class="atributo_valor_link">Besos en la boca<\/span><\/td>');xhtml_buscador.push('<\/tr>');Buscador.atributos[Buscador.atributos.length-1].valores.push(3204);xhtml_buscador.push('<tr>');xhtml_buscador.push('  <td valign="top">');xhtml_buscador.push('    <input id="atributo_valor_3204_control" type="checkbox" value="1" />');xhtml_buscador.push('  <\/td>');xhtml_buscador.push('  <td class="atributo_valor" valign="top"><span id="atributo_valor_3204_link" class="atributo_valor_link">Dúplex<\/span><\/td>');xhtml_buscador.push('<\/tr>');Buscador.atributos[Buscador.atributos.length-1].valores.push(3202);xhtml_buscador.push('<tr>');xhtml_buscador.push('  <td valign="top">');xhtml_buscador.push('    <input id="atributo_valor_3202_control" type="checkbox" value="1" />');xhtml_buscador.push('  <\/td>');xhtml_buscador.push('  <td class="atributo_valor" valign="top"><span id="atributo_valor_3202_link" class="atributo_valor_link">Masajes<\/span><\/td>');xhtml_buscador.push('<\/tr>');Buscador.atributos[Buscador.atributos.length-1].valores.push(3201);xhtml_buscador.push('<tr>');xhtml_buscador.push('  <td valign="top">');xhtml_buscador.push('    <input id="atributo_valor_3201_control" type="checkbox" value="1" />');xhtml_buscador.push('  <\/td>');xhtml_buscador.push('  <td class="atributo_valor" valign="top"><span id="atributo_valor_3201_link" class="atributo_valor_link">Striptease<\/span><\/td>');xhtml_buscador.push('<\/tr>');Buscador.atributos[Buscador.atributos.length-1].valores.push(3205);xhtml_buscador.push('<tr>');xhtml_buscador.push('  <td valign="top">');xhtml_buscador.push('    <input id="atributo_valor_3205_control" type="checkbox" value="1" />');xhtml_buscador.push('  <\/td>');xhtml_buscador.push('  <td class="atributo_valor" valign="top"><span id="atributo_valor_3205_link" class="atributo_valor_link">Atención a parejas<\/span><\/td>');xhtml_buscador.push('<\/tr>');Buscador.atributos[Buscador.atributos.length-1].valores.push(3208);xhtml_buscador.push('<tr>');xhtml_buscador.push('  <td valign="top">');xhtml_buscador.push('    <input id="atributo_valor_3208_control" type="checkbox" value="1" />');xhtml_buscador.push('  <\/td>');xhtml_buscador.push('  <td class="atributo_valor" valign="top"><span id="atributo_valor_3208_link" class="atributo_valor_link">Despedidas soltero<\/span><\/td>');xhtml_buscador.push('<\/tr>');Buscador.atributos[Buscador.atributos.length-1].valores.push(3207);xhtml_buscador.push('<tr>');xhtml_buscador.push('  <td valign="top">');xhtml_buscador.push('    <input id="atributo_valor_3207_control" type="checkbox" value="1" />');xhtml_buscador.push('  <\/td>');xhtml_buscador.push('  <td class="atributo_valor" valign="top"><span id="atributo_valor_3207_link" class="atributo_valor_link">Ama<\/span><\/td>');xhtml_buscador.push('<\/tr>');xhtml_buscador.push('<\/table>');xhtml_buscador.push('<div style="clear: both"><\/div>');xhtml_buscador.push('  <\/div>');xhtml_buscador.push('<\/li>');xhtml_buscador.push('<\/ul>');ELM('buscador_escort').innerHTML=xhtml_buscador.join('');Buscador.filtro=new String('').split('|');Anunciate.Iniciar();DISPLAY("cargando",false);Buscador.Iniciar(3);Espacio.espacios[2]=[];Espacio.anuncios[2]=[];Espacio.espacios[2][Espacio.espacios[2].length]={'id_subespacio':'oviedo'};Espacio.anuncios[2]['oviedo']=[];Espacio.anuncios[2]['oviedo'][1]={};Espacio.anuncios[2]['oviedo'][2]={};Espacio.anuncios[2]['oviedo'][3]={};Espacio.Iniciar();DISPLAY("biombo",false);var xhtml_banners_left=[];ELM('banners_left').innerHTML=xhtml_banners_left.join('');DISPLAY('banners_left',true);
