



<!--Pagina met foute domein redirecten-->

var loc = window.location.href;
var server1 = 'zandkant.nl';
var newLoc = 'start.html';

if (loc.toLowerCase().indexOf(server1) ==-1)
{    
newLoc = 'http://www.zandkant.nl';

if (document.images)
    setTimeout('window.location.replace(newLoc)',0);
else
    setTimeout('window.location = newLoc',0);  
}  









