﻿// JScript File
function $get(e) { return document.getElementById(e); }
function $toggle(d) {
    if ($get(d).style.display == 'none')
        $get(d).style.display = 'block';
    else
        $get(d).style.display = 'none';
}
function $hide(d) { $get(d).style.display = 'none'; }
function $show(d) { $get(d).style.display = 'block'; }
function disableCartBtn() { $get('scb').innerHTML = 'Shopping Cart'; }
function disableCheckOutBtn() { $get('cob').innerHTML = 'Check Out'; }

