﻿function handleError()
{ 
    var sPath2 = window.location.pathname;
    var sPage2 = sPath2.substring(sPath2.lastIndexOf('/') + 1);
    if (sPage2 != 'index.htm')
    {
        window.location = 'http://www.baarsfietsen.nl/index.htm?err=1&page='+sPage2;
    }
}
window.onerror = handleError;

var sPath = window.parent.location.pathname;
var sPage = sPath.substring(sPath.lastIndexOf('/') + 1);
//document.write('<span style="color:White;">>' + sPage + '<</span>');
if (sPage != 'index.htm')
{
    if (sPage.length > 0)
        window.parent.location = 'http://www.baarsfietsen.nl/index.htm?page='+sPage;
}
