// JavaScript Document function getFlashMovie(movieName) {
 function getFlashMovie(movieName) {
  var isIE = navigator.appName.indexOf("Microsoft") != -1;
  return (isIE) ? window[movieName] : document[movieName];
 }
 
 function adjustCart(itemCount) {
  //var text = document.htmlForm.sendField.value;
  getFlashMovie("nav_flash").adjustCartCount(itemCount);
  
 }