//menu_status = new Array();

function showHide(theid){
    if (document.getElementById) {
    var switch_id = document.getElementById(theid);

//        if(menu_status[theid] != 'styledTable') {
        if(switch_id.className == 'hide') {
           switch_id.className = 'styledTable';
//           menu_status[theid] = 'styledTable';
        }else{
           switch_id.className = 'hide';
 //          menu_status[theid] = 'hide';
        }

	}

}


function showHideBlock(theid, desiredClass){
	if (document.getElementById) {
		var switch_id = document.getElementById(theid);
		if (switch_id.className != desiredClass) {
			if (switch_id.className == 'hide') {
				switch_id.className = 'dontHide';
			} else {
				switch_id.className = 'hide';
			}
		}
	}
}
