/*
	Author: Ci&T
	Date: July, 2006
*/

/* SUB MENU */
function ShowSubMenu(id) {
	document.getElementById(id).style.display = ''; // show div
}

function HideSubMenu(id) {
	document.getElementById(id).style.display = 'none'; // hide div
}
