function grobParser(a){this.fileName="../huizen/SpecialObjects.xml";this.fileNameRoot="huizen/SpecialObjects.xml";this.items={img:"hoofdfoto",plaats:"plaatsnaam",adres:"adres",prijs:"prijssoort,prijs,prijsconditie"};this.sep=" ";this.max_items=false;if(typeof a.items!="undefined"){this.items=a.items}if(typeof a.seperator!="undefined"){this.sep=a.seperator}if(typeof a.filename!="undefined"){this.fileName=a.filename}if(typeof a.max_items!="undefined"){this.max_items=parseInt(a.max_items)}if(window.XMLHttpRequest){this.xml_obj=new XMLHttpRequest()}else{this.xml_obj=new ActiveXObject("Microsoft.XMLHTTP")}this.xml_obj.open("GET",this.fileName,false);this.xml_obj.send("");if(this.xml_obj.readyState==4){if(this.xml_obj.status!=200){this.xml_obj.open("GET",this.fileNameRoot,false);this.xml_obj.send("")}}this.xmlDoc=this.xml_obj.responseXML;this.parse();return this}grobParser.prototype.strip_html=function(a){return a.replace(/<(?:.|\s)*?>/g,"")};grobParser.prototype.get=function(){return this.xmlDoc};grobParser.prototype.cast_array=function(d){arr=[];for(var c=0,b=this.max_items;c<b;++c){arr[arr.length]=d[c]}return arr};grobParser.prototype.obj_rand=function(a){arr=[];arr[arr.length]=a[Math.floor(Math.random()*a.length)];return arr};grobParser.prototype.hasNodeVal=function(a){if(typeof a=="undefined"||a==null){return false}if(a.childNodes.length<=0){return false}return(!a.nodeValue&&(!a.childNodes||!a.childNodes.item(0).nodeValue))?false:true};grobParser.prototype.parse=function(){var c,a=this.xmlDoc.getElementsByTagName("object");var e,g="";var h=[];if(a.length<=0){document.getElementById("specContainer").style.display="none";return}if(this.max_items==1){a=this.obj_rand(a)}if(this.max_items>=2){if(this.max_items<a.length){a=this.cast_array(a)}}g+="<ul>";for(var b=0,d=a.length;b<d;++b){c=a[b];h.push(c.getAttribute("id"));className=(b%2==0)?"spec_odd":"spec_even";e=c.getElementsByTagName("deeplink")[0].childNodes[0].nodeValue;if(b==0){className+=" firstSpec"}if(b==a.length-1){className+=" lastSpec"}g+="<li onclick=\"window.location='"+e+'\'"class="'+className+'">';for(var f in this.items){if(this.items[f]==""){continue}if(f=="img"){g+='<img class="spec_img" src="'+c.getElementsByTagName(this.items[f])[0].childNodes[0].nodeValue+'" alt="">';continue}g+='<div class="spec_'+f+'">';if(this.items[f].indexOf(",")!=-1){e=this.items[f].split(",");for(var k=0,j=e.length;k<j;++k){if(e[k]=="prijs-int"){if(parseFloat(c.getElementsByTagName(e[k])[0].childNodes[0].nodeValue)==1||parseFloat(c.getElementsByTagName(e[k])[0].childNodes[0].nodeValue)==0){g+="N.O.T.K";++k;continue}}if(e[k]=="prijs"){g+="&euro; "}if(c.getElementsByTagName(e[k]).length>0){if(e[k]=="pic0tekst"){if(c.getElementsByTagName(e[k])[0].childNodes[0].nodeValue.indexOf("KENMERKEN")!=-1){continue}}}if(c.getElementsByTagName(e[k])[0].childNodes[0]!=null){g+=this.strip_html(c.getElementsByTagName(e[k])[0].childNodes[0].nodeValue)+this.sep}}}else{if(this.hasNodeVal(c.getElementsByTagName(this.items[f])[0])){g+=this.strip_html(c.getElementsByTagName(this.items[f])[0].childNodes[0].nodeValue)}}g+="</div>"}g+="</li>"}g+="</ul>";setCookieMin("smartNav",h.join("~"),30);document.getElementById("specContainer").innerHTML+=g};
