
function loadImages() {
if (document.getElementById) {  // DOM3 = IE5, NS6
document.getElementById('divLoadingBox').style.visibility = 'hidden';
}
else {
if (document.layers) {  // Netscape 4
document.divLoadingBox.visibility = 'hidden';
}
else {  // IE 4
document.all.divLoadingBox.style.visibility = 'hidden';
      }
   }
}

function makeLink(selCat){
    window .location ="ShoppingCartComparison.aspx?ddCat=" + document .getElementById ("ctl00_body_ddCat").value;
}