﻿//Version 1.0 of Online Sales Common JavaScript

//"closes" a div by setting its display to "none"
//Parameter theDiv is the <div> element to "close"
function closePopUp(theDiv) {
    theDiv.style.display = "none";
}

