// JavaScript voor tabs function tab_findObj(id) { x = document.getElementById(id); return x; } var tabCurrent = "tab_base"; function showTab(id) { if (tabCurrent ){ if(tab_findObj(tabCurrent)) { tab_findObj(tabCurrent).className = 'tab_off';} tab_findObj('content_'+ tabCurrent).className= 'hidden'; } tab_findObj(id).className = 'tab_on'; tab_findObj('content_'+ id).className= 'show'; tabCurrent = id } var tabCurrent_footer; function showTab_footer(id) { if (tabCurrent_footer ){ tab_findObj(tabCurrent).className = 'tab_off'; }; tab_findObj(id).className = 'tab_on'; tab_findObj('content_'+ id).className= 'show'; tabCurrent = id } function showImage(id) { tab_findObj(id).className = "show"; }