function LeftNav(element, mode) {  
 if ((document.getElementById) || (document.all)) {

  //defaults
  var bgColor = '#FFCC00';
  var txtColor = '#000000';

  if (mode == 'over') {
           bgColor = '#B70E14';
           txtColor = '#FFFFFF';}
  
  //modern browsers
  if (document.getElementById) {

   var navTxt = document.getElementById(element + "Link");
   //change colors, swap image
   document.getElementById(element).style.backgroundColor = bgColor;
   if (navTxt) { navTxt.style.color = txtColor; }

  //IE 4
  } else if (document.all) {

   var navTxt = document.all(element + "Link");

   //change colors, swap image
   document.all(element).style.backgroundColor = bgColor;
   if (navTxt) { navTxt.style.color = txtColor; }
  }
 }
}


function OpenViewCartWindow() {
     var urlst = "https://www.paypal.com/cgi-bin/webscr?cmd=_cart&display=1&business=sales@uborg.com";
     open(urlst, "paypal");
   }


