var Effects = { show : function (id) { if(typeof(GLOBAL_JQUERY) != 'undefined') $('#'+id).show(); else document.getElementById(id).style.display = ''; }, hide : function (id) { if(typeof(GLOBAL_JQUERY) != 'undefined') $('#'+id).hide(); else document.getElementById(id).style.display = 'none'; } , visibility : function (id) { //toggle not found with pampa controls var display = document.getElementById(id).style.display; if(typeof(GLOBAL_JQUERY) != 'undefined') { if (display != 'none') $('#'+id).hide(); else $('#'+id).show('slow'); } else { if (display != 'none') document.getElementById(id).style.display = 'none'; else document.getElementById(id).style.display = ''; } } }