function refreshWithPath(str)
{
	
	setTimeout ( "reallyRefresh('"+str+"')", 600 );

}

function reallyRefresh(str)
{
	//alert(str);

	self.location.href=self.location.href.split("#")[0]+"#/"+str;
	self.location.reload(true);
	
}

