function showdrop(id,itmtxt)
{
	var hostname=location.hostname;
	el = document.getElementById(id);
	if (el.style.display == 'none')
	{
		el.style.display = 'inline';
		el.style.font = "normal normal 10px ariel";
		el = document.getElementById('more' + id);
		el.innerHTML = "<img src='http://"+hostname+"/themes/ICS/images/minus.gif' border='0' alt='Contract'  />  " + itmtxt;
	}
	else
	{
		el.style.display = 'none';
		el = document.getElementById('more' + id);
		el.innerHTML = "<img src='http://"+hostname+"/themes/ICS/images/plus.gif' border='0' alt='Expand'  />  " +itmtxt;
	}
}

