function showSiteNotFound() {   
	if ((location.href.indexOf(".sharpschool.net") > 0) 
		&& (location.href.indexOf("http://live.sharpschool.net") != 0) 
		&& (location.href.indexOf("http://scheduledtasks.sharpschool.net") != 0)
		&& (location.href.indexOf("/cms") < 0))
	{     
		window.location = 'http://redirect.sharpschool.net/';
	} 
	
	if ((location.href.indexOf(".sharpschool.com") > 0) 
		&& (location.href.indexOf("http://live.sharpschool.com") != 0) 
		&& (location.href.indexOf("http://scheduledtasks.sharpschool.com") != 0)
		&& (location.href.indexOf("/cms") < 0))
	{     
		window.location = 'http://redirect.sharpschool.com/';
	} 
}

function redirect() {   
	if ((location.href.indexOf(".sharpschool.net") > 0) 
		&& (location.href.indexOf("http://live.sharpschool.net") != 0) 
		&& (location.href.indexOf("http://scheduledtasks.sharpschool.net") != 0))
	{     
		setTimeout("window.location = 'http://www.sharpschool.com/'",5000);
	} 
	
	if ((location.href.indexOf(".sharpschool.com") > 0) 
		&& (location.href.indexOf("http://live.sharpschool.com") != 0) 
		&& (location.href.indexOf("http://scheduledtasks.sharpschool.com") != 0))
	{     
		setTimeout("window.location = 'http://www.sharpschool.com/'",5000);
	} 
}
