// JavaScript Document

var myObject = null;

function showMe (showObject) {
	myObject = document.getElementById(showObject);
	myObject.style.display = 'block';
}
function hideMe (showObject) {
	myObject = document.getElementById(showObject);
	myObject.style.display = 'none';
}
