﻿// JavaScript 

// used products menu
function show(id) {
    document.getElementById(id).style.display = 'block';
    document.getElementById(id).style.visibility = 'visible';
    }
function hide(id) {
    document.getElementById(id).style.display = 'none';
    document.getElementById(id).style.visibility = 'hidden';
    }
function wide(id) {
    document.getElementById(id).style.width = '310px';
    }
function narrow(id) {
    document.getElementById(id).style.width = '250px';
    }
