function goElseWhere()
{
	var hostname = window.location.hostname;
	var str=String(window.location);

	if((hostname=='www.taylormedicalgroup.net' || hostname=='taylormedicalgroup.net') && str.substring(0,5)!='https')
	{
		var oldURL = window.location.hostname + window.location.pathname;
		
		if(oldURL.substring(0,3)!='www'){
			oldURL = 'www.'+oldURL;
		}
				
		var newURL = "https://" + oldURL;
		window.location = newURL;
	}
}
goElseWhere();
