// Marketplace script for GJSentinel// DIRECTORY TABS // ///////////////////// function show(div_id) { if(document.getElementById) { document.getElementById('cn_tab_dir_text' + div_id).className = 'show'; document.getElementById('cn_tab_dir_tab' + div_id).className = 'on'; } else { return false; } } function hide(div_id) { if(document.getElementById) { document.getElementById('cn_tab_dir_text' + div_id).className = 'hide'; document.getElementById('cn_tab_dir_tab' + div_id).className = 'off'; } else { return false; } } // MARKETPLACE TABS // ///////////////////// function cn_tab_mktplc_show(div_id) { if(document.getElementById) { document.getElementById('cn_tab_mktplc_text' + div_id).className = 'show'; document.getElementById('cn_tab_mktplc_tab' + div_id).className = 'on'; } else { return false; } } function cn_tab_mktplc_hide(div_id) { if(document.getElementById) { document.getElementById('cn_tab_mktplc_text' + div_id).className = 'hide'; document.getElementById('cn_tab_mktplc_tab' + div_id).className = 'off'; } else { return false; } }