hostname = window.location.hostname; 
href = window.location.href; 
host = window.location.host; 
port = window.location.port;
pathname = window.location.pathname; 
search = window.location.search;
protocoal = window.location.protocol; 

href = href.toLowerCase()

if(href.indexOf('drginasohn.com') < 0 ){
	href = href.replace("localhost:4058", "drginasohn.com")
	href = href.replace("tuftsdental.net", "drginasohn.com")
	window.location.href=href;
}

