var sApiKey = 'ABQIAAAAH0RXN73ezawI4iauFogxJRQsIEs7mRdEQRekyvkIm2wcuaqHrxSKL2mghSV4Fb42PfrjL4hYQ4nKSw';
function checkUrl() {
	//some bad URL's (without the www) have found their way onto the web. Handle this.
	var urlUsed = location.href;
	var urlParams = '';
		
	if ((urlUsed.substr(7,3) != 'www') || (urlUsed.substr(7,18) == 'www.sueandpaul.com')) {
	
		if (urlUsed.substr(7,21) != 'www.sueandpaul.com/gp'){
		
			//if they sent querystring parameters, make sure to preserve them
			if (urlUsed.indexOf('?') > -1) {
			
				var qStringArray = urlUsed.split('?');
	    	
				if (qStringArray[1].length > 0) 
			
					urlParams = '?' + qStringArray[1];
	    	
			}
	    	
			location.href='http://www.gmap-pedometer.com' + urlParams;
			
		} else {
			
			sApiKey = 'ABQIAAAAH0RXN73ezawI4iauFogxJRTLFs-UQrxi3SMnB72sWJuLxWe_dhRvQMXLuy1nkF2gQ0zL_ysUReWQJA';		
			
		}
	
	}
	
}
checkUrl();