// MARKETPLACE TABS function cn_tab_mktplc_show(div_id) { if(document.getElementById) { document.getElementById('cnTabMktplceText' + div_id).className = 'show'; document.getElementById('cnTabMktplcTab' + div_id).className = 'on'; } else { return false; } } function cn_tab_mktplc_hide(div_id) { if(document.getElementById) { document.getElementById('cnTabMktplceText' + div_id).className = 'hide'; document.getElementById('cnTabMktplcTab' + div_id).className = 'off'; } else { return false; } } // DIRECTORY TABS // ///////////////////// function show(div_id) { if(document.getElementById) { document.getElementById('cnTabDirText' + div_id).className = 'show'; document.getElementById('cnTabDirTab' + div_id).className = 'on'; } else { return false; } } function hide(div_id) { if(document.getElementById) { document.getElementById('cnTabDirText' + div_id).className = 'hide'; document.getElementById('cnTabDirTab' + div_id).className = 'off'; } else { return false; } }