function GetByID(sID, oCtl)
{
	if (oCtl == null)
		oCtl = document;
	if (oCtl.getElementById)
		return oCtl.getElementById(sID);
	else
		return oCtl.all(sID);
}

function ShowHide(ctlID)
{
	var d = GetByID(ctlID);
	if (d.style.display == '')
		d.style.display = 'none';
	else
		d.style.display = '';
}

function Hide(ctlID)
{
	var d = GetByID(ctlID);
		d.style.display = 'none';
}