// JavaScript Document
function urlChave()
{
	
	var chave = window.location.search.substring(1);
	
	if(chave.length == 10){
		window.location = window.location.protocol + "//" + window.location.hostname + window.location.pathname + "#" + chave;
	}
}

