// JavaScript Document

function showMyContent (myObject) {
	object = document.getElementById(myObject);
	object.style.display = 'block';
}

function hideMyContent (myObject) {
	object = document.getElementById(myObject);
	object.style.display = 'none';
}
