/*
var RollIt = { 
	timeout: Array(), 
	showPopup: function(id) { 
		//clearTimeout(this.timeout[id]);
		//if ($(id).style.display == 'none') { 
			//this.timeout[id] = setTimeout(function() {
				//new Effect.Appear(id, {duration:.1, fps:10})}, 50); 
		//} 
		$(id).style.display = 'inline';
	}, 
	hidePopup: function(id) {
		//if($(id).style.display == 'none') {
			//clearTimeout(this.timeout[id]);
		//} else { 
			//this.timeout[id] = setTimeout(function() {
				//new Effect.Fade(id, {duration:.1, fps:10})}, 50); 
			$(id).style.display = 'none';
		//}
	}
}
*/

function showHideItem(id)
{
 try 
 {
  var obj = document.getElementById(id);
  
  if (obj.style.display == 'none')
  {
   obj.style.display = ''; 
  }
  else
  {
   obj.style.display = 'none';
  }
 }
 catch(e)
 {}
}
