function displayDescription(i) {	
	//JH = document.body.clientHeight;
	//JW = document.body.clientWidth;
	//JX = document.body.scrollLeft;
	//JY = document.body.scrollTop;
	var w = null;
	w = document.getElementById("div"+i);
	w.style.display = 'none';		
	w.style.right = 0;
	w.style.top = document.body.scrollTop;		
	w.style.display = '';
}
function killDescription(i) {
	document.getElementById("div"+i).style.display='none';
}
