function Root()
{
if ( document.URL.toLowerCase().indexOf('premier' )  != -1 )
	{
	sRoot = 'http://www.premier-badges.co.uk/';
	}

if ( document.URL.toLowerCase().indexOf('localhost' )   != -1 )
	{
	sRoot = 'http://localhost/pb/';
	}

if ( document.URL.toLowerCase().indexOf('test-web.co.uk') != -1 )
	{
	sRoot = 'http://www.test-web.co.uk/pb/';
	}
	
	return sRoot;
}
