function htmlhistory_initialize() {
	dhtmlHistory.initialize();
	dhtmlHistory.addListener(htmlhistory_historychange);
}

function htmlhistory_add(hash, data) {
	dhtmlHistory.add(hash, data);
	hash_params = hash;
}

function htmlhistory_historychange(newLocation, historyData) {
	magazin_goto(newLocation, historyData);
	hash_params = newLocation;
}


