var iStartPos;
var sLocation = self.location.href.toLowerCase();

if ( (iStartPos = sLocation.indexOf( '?' )) >= 0 )
    sLocation = sLocation.slice( 0, iStartPos );

if ( sLocation != sHTMLUrl.toLowerCase() + 'index.html' )
    self.location = sHTMLUrl + 'index.html';
