// JavaScript Document

function hideTheBlock(idd, fadeObj){   // remove a block of code from the page
alert('hide');
//		idd.style.display = 'none';
}

function showTheBlock(idd, fadeObj){   // replace a block of code on the page
alert('show');
//		idd.style.display = 'block';
}

function hideBlock(id){   // remove a block of code from the page
	var idd = document.getElementById(id);
		idd.style.display = 'none';
	return false;
}

function showBlock(id){   // replace a block of code on the page
	var idd = document.getElementById(id);
		idd.style.display = 'block';
		return false;
}

function hideShow(idHide, idShow){ // remove one block and replace a second block
	var a = hideBlock(idHide);
	a = showBlock(idShow);
	return false;
}