function updatePage(){
	if(location.href.indexOf("#") == -1){
		if(location.pathname.length>1){
			var newURL = location.protocol+"//"+location.hostname+"/#"+location.pathname+ location.search;
			location.replace(newURL);
		}
	}
}
