// JavaScript Document

// shows any element by ID 
function show(a) {
	document.getElementById(a).style.display = 'block';
}
// hides any element by ID 
function hide(a) {
	document.getElementById(a).style.display = 'none';
}