// Marketplace script for GJSentinel// 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; } } // MARKETPLACE TABS // ///////////////////// function cnTabMktplcShow(div_id) { if(document.getElementById) { document.getElementById('cnTabMktplcText' + div_id).className = 'show'; document.getElementById('cnTabMktplcTab' + div_id).className = 'on'; } else { return false; } } function cnTabMktplcHide(div_id) { if(document.getElementById) { document.getElementById('cnTabMktplcText' + div_id).className = 'hide'; document.getElementById('cnTabMktplcTab' + div_id).className = 'off'; } else { return false; } }