//makes sure that domain is correct for software and also only works when downloaded
function doLiveEdURL(){
	if(document.location.href.indexOf("liveedition.co.uk")<1) {
		var theURL=window.location.href;
		var newURL='';
		if(document.location.href.indexOf("ictus.co.uk")>0) {
			newURL=(theURL.replace('ictus.co.uk', 'liveedition.co.uk'));
		}
		if(document.location.href.indexOf("gilmourprint.co.uk")>0) {
			newURL=(theURL.replace('gilmourprint.co.uk', 'liveedition.co.uk'));
		}
		if(document.location.href.indexOf("gilmourprint.com")>0) {
			newURL=(theURL.replace('gilmourprint.com', 'liveedition.co.uk'));
		}
		window.location.href=newURL;
	}
}
//if you come to index.html with liveedition.co.uk in URL you get home.html page
function doHomeURL(){//divert liveedition to correct home page
	//REMOVED for now
	//if(document.location.href.indexOf("liveedition.co.uk")>0) {
	//		document.location.href='http://www.liveedition.co.uk/home.html';
	//}
}

//if you come to 404.html with liveedition.co.uk in URL you get 404er.html page
function do404leURL(){//divert liveedition to correct home page
	if(document.location.href.indexOf("liveedition.co.uk")>0) {
			document.location.href='http://www.liveedition.co.uk/404le.html';
	}
}
//if you come to 404le.html with NOT liveedition.co.uk in URL you get 404.html page
function do404URL(){//divert liveedition to correct home page
	if(document.location.href.indexOf("liveedition.co.uk")<0) {
			document.location.href='http://www.liveedition.co.uk/404.html';
	}
}


//DONT USE ON HOME.html FOR NOW
//if you come to home.html and DONT have liveedition.co.uk in URL you get moved to index.html
/*
function doSortURL(){//change URL and divert to index.html
	if(document.location.href.indexOf("liveedition.co.uk")<1) {
		if(document.location.href.indexOf("ictus.co.uk")>0) {
			document.location.href='http://www.ictus.co.uk/index.html';
		}
		if(document.location.href.indexOf("gilmourprint.co.uk")>0) {
			document.location.href='http://www.gilmourprint.co.uk/index.html';
		}
		if(document.location.href.indexOf("gilmourprint.com")>0) {
			document.location.href='http://www.gilmourprint.com/index.html';
		}
	}
}
*/
