var baseget;
var hostname;

hostname = location.hostname.toLowerCase();
baseget = location.protocol + '//www.' + location.hostname + location.pathname;

if ((hostname.toLowerCase().indexOf('www.')<0)&&(hostname.toLowerCase().indexOf('203.129.217.126')<0)&&(hostname.toLowerCase().indexOf('vidushiranchi')<0))
{
	if (location.pathname.toLowerCase().indexOf('index.html')>=0)
	{
		window.location.replace(location.protocol + '//www.' + location.hostname);
	}
	else
	{
		window.location.replace(location.protocol + '//www.' + location.hostname + location.pathname);
	}
}
else
{
	if (location.pathname.toLowerCase().indexOf('index.html')>=0)
	{
		window.location.replace(location.protocol + '//' + location.hostname);
	}
}


