HistoryEntry = function(postlink_id,value){
	var pl = getCustomTag(postlink_id);
	if(pl){
		pl.addPreDispatch(function(){
            try {
                if(window.historymanager != null){
                    window.historymanager.lastloaded=value;
                    window.historymanager.addEntry(pl.id,value);
                }
            } catch (e) {

            }

			if(typeof(pageTracker)!='undefined'){
				pageTracker._trackPageview(value);
			}
		})
	}
}
