/** * Returns an XMLHttp instance to use for asynchronous * downloading. This method will never throw an exception, but will * return NULL if the browser does not support XmlHttp for any reason. * @return {XMLHttpRequest|Null} */ /** google analytics */ (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) })(window,document,'script','//www.google-analytics.com/analytics.js','ga'); ga('create', 'UA-1507143-37', 'slapeninlimburg.nl'); ga('send', 'pageview'); function createXmlHttpRequest() { try { if (typeof ActiveXObject != 'undefined') { return new ActiveXObject('Microsoft.XMLHTTP'); } else if (window["XMLHttpRequest"]) { return new XMLHttpRequest(); } } catch (e) { changeStatus(e); } return null; }; /** * This functions wraps XMLHttpRequest open/send function. * It lets you specify a URL and will call the callback if * it gets a status code of 200. * @param {String} url The URL to retrieve * @param {Function} callback The function to call once retrieved. */ function downloadUrl(url, callback) { var status = -1; var request = createXmlHttpRequest(); if (!request) { return false; } request.onreadystatechange = function() { if (request.readyState == 4) { try { status = request.status; } catch (e) { // Usually indicates request timed out in FF. } if ((status == 200) || (status == 0)) { callback(request.responseText, request.status); request.onreadystatechange = function() {}; } } } request.open('GET', url, true); try { request.send(null); } catch (e) { changeStatus(e); } }; /** * Parses the given XML string and returns the parsed document in a * DOM data structure. This function will return an empty DOM node if * XML parsing is not supported in this browser. * @param {string} str XML string. * @return {Element|Document} DOM. */ function xmlParse(str) { if (typeof ActiveXObject != 'undefined' && typeof GetObject != 'undefined') { var doc = new ActiveXObject('Microsoft.XMLDOM'); doc.loadXML(str); return doc; } if (typeof DOMParser != 'undefined') { return (new DOMParser()).parseFromString(str, 'text/xml'); } return createElement('div', null); } /** * Appends a JavaScript file to the page. * @param {string} url */ function downloadScript(url) { var script = document.createElement('script'); script.src = url; document.body.appendChild(script); } $(document).ready(function() { $('.pics').cycle({ fx: 'fade', speed: 3000, timeout: 2, delay: -4000 }); $('.picst').cycle({ fx: 'fade', speed: 3000, timeout: 2, delay: -4000 }); $(".extLink").fancybox({ 'width' : 850, 'height' : 640, 'autoScale' : false, 'transitionIn' : 'none', 'transitionOut' : 'none', 'type' : 'iframe' }); }); //Cufon.replace('.vmenus',{hover:true,hoverables:{a:true}}); //Cufon.replace('.vmenus', { fontFamily: 'James Fajardo' }); function SwitchMenu(obj){ if(document.getElementById){ var el = document.getElementById(obj); var ar = document.getElementById("cont").getElementsByTagName("DIV"); if(el.style.display == "none"){ for (var i=0; i0&&parent.frames.length) { d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p); } if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i" + name + "
" + address + "
" + postcode + " " + woonplaats + "
T " + telefoon + "
Website"+ '


Routeplanner: (geef een adres in)
'+ '

'+ ''+ ''+ '

'+ ''; // create the marker var marker = createMarker(point,name,html,type); } }); } function createMarker(latlng,name,html,type) { var contentString = html; var marker = new google.maps.Marker({ position: latlng, icon: gicons[type], shadow: iconShadow, map: map, title: name, zIndex: Math.round(latlng.lat()*-100000)<<5 }); google.maps.event.addListener(marker, 'click', function() { infowindow.setContent(contentString); infowindow.open(map,marker); }); } //]]>