function ScrollDIV(containerID, elementID) {
	if (document.getElementById(elementID) != null && document.getElementById(containerID) != null) {
		var el = document.getElementById(elementID);
		var container = document.getElementById(containerID);
		//if (el.offsetTop > container.clientHeight)
		container.scrollTop = el.offsetTop;
	}	
}

function showRow(rowName)
{
	if (document.getElementById)
	{
		document.getElementById(rowName).style.display = '';
	}
	else if (document.all)
	{
		document.all[rowName].style.display = '';
	}	
}

function hideRow(rowName)
{
	if (document.getElementById)
	{
		document.getElementById(rowName).style.display = 'none';
	}
	else if (document.all)
	{
		document.all[rowName].style.display = 'none';
	}	
}