function showUpDetails(ele){


	var noOfUpdates ;
	noOfUpdates = document.getElementById("updates").childNodes.length;
	
	
	if(navigator.appName=='Opera'|| navigator.appName=='Netscape'){
		
	noOfUpdates=noOfUpdates-5;
	}
			

	
	var i=0
	while (i<noOfUpdates)
	{
		if(i!=ele)
		document.getElementById('upDetails'+i).style.display='none';
		document.getElementById('upPoints'+i).className='li_off';
		document.getElementById('upBullets'+i).className='li_off';
		
		i=i+1;	
	}
		document.getElementById('upDetails'+ele).style.display='block';
		document.getElementById('upPoints'+ele).className='li_on';
		document.getElementById('upBullets'+ele).className='li_on';

}
