// redirect function naar nieuwe website //
 function GoToURL() 
 {
  window.status=('Connecting....');
var URLis;
var location=("http://" + "www.gerechtsdeurwaardersvynck-leys.be/index_vl.htm");
 URLis = document.URL;
   if (URLis == "http://www.gerechtsdeurwaarders-brugge.be/")
     { 
      alert('Deze site is verplaatst naar www.gerechtsdeurwaardersvynck-leys.be \n\nKlik op ok om naar onze nieuwe website te gaan.');
      this.location.href = location;
     }
   else
   	 {  
   	 	this.location.href = location;
   }
 }
