//Shereen@17-06-2002 : Function to show the summary of the news section titles
function showSummaryNewsSection(itemNo,on)
{
	var itemObj;
	itemObj = "note" + itemNo;
	if(on)
	{
		document.all.item(itemObj).style.display = "";
		/*if (intervalTime != 0)
			window.clearInterval(intervalTime);*/
	}
	else
	{
		document.all.item(itemObj).style.display = "none";
		if (intervalTime != 0)
			window.clearInterval(intervalTime);
	}	

}
//Shereen@End
//Shereen@18-06-2002 : Function to call showSummaryNewsSection() after 1000 milliseconds on mouse over.
function setIntervalDelay(itemNo,on)
{
	if (on)
		intervalTime = window.setInterval("showSummaryNewsSection(" + itemNo + "," + on +")",100);
	else
		showSummaryNewsSection(itemNo,on);
}
//Shereen@End
