/*

//showEditLinks
function sEL(id, obj) {
	sHID('timelineEntry' + id);
	hHID('d' + id);
	obj.className="i";
}
//hideEditLinks
function hEL(id, obj, secClass) {
	sHID('d' + id);
	hHID('timelineEntry' + id);
	obj.className="i "+secClass;
}*/

		
/*writeHTML("l" + id, editLink + historyLink + copyLink + deleteLink);
		if (document.all) {
			document.getElementById("l" + id).innerHTML = editLink + historyLink + copyLink + deleteLink;
		}
		else {
			rng = document.createRange();
			el = document.getElementById("l" + id);
			rng.setStartBefore(el);
			htmlFrag = rng.createContextualFragment(editLink + historyLink + copyLink + deleteLink);
			while (el.hasChildNodes())
			el.removeChild(el.lastChild);
			el.appendChild(htmlFrag);
		}
		obj.className = "i";
		

	
	function hEL(id, secClass, obj) {

		if (document.all)
			document.getElementById("l" + id).innerHTML = "&nbsp;";
		else 
			document.getElementById("l" + id).textContent = "";
			
		obj.className = "i " + secClass;
	}
		
		*/

//showReferenceEditLinks
function sR(pRn) {
	sHID('ref' + pRn);
	document.getElementById('dref' + pRn).width='0';
}
//hideReferenceEditLinks
function hR(pRn) {
	hHID('ref' + pRn);
	document.getElementById('dref' + pRn).width='8';
}
	
function s(obj) {
	obj.className = "i";
}

function h(obj, secClass) {
	obj.className = "i " + secClass;							
}
