function updatePage() {
    if(document.location.hash) {
            var href;
            if(document.location.match){ href = document.location;
            }else{
            	 href = document.location.href;
                }

            var m=Array();
            m= href.match(/#page=(.*)/);
            if(m && m.length > 1){
                    document.location = 'http://are.kz' + m[1];

                    }
	}
}

