// $Id: ItemList.js,v 1.1 2003/03/20 22:27:23 ksuzuki Exp $
function ChangeBorder(img, borderSize) {
  document.images[img].border = borderSize;
  document.images[img].border = borderSize;
  return false;
}

function ChangeImage(img, srcFile) {
  document.images[img].src = srcFile;
  return false;
}

function ShowCart() {
  var opt = 'width=600,height=600,top=0,left=0,resizable=yes,scrollbars=yes';
  cartWindow = window.open('', 'cartFrame', opt);
  cartWindow.focus()
  cartWindow.location.href = 'showCart.php?Mode=ItemList';
  window.location.reload();
}

function ShowImage(Item) {
  document.frmItem.Mode.value = "ShowImage";
  document.frmItem.Item.value = Item;
  document.frmItem.method = "get";
  document.frmItem.target = "_self";
  document.frmItem.action = "showImage.php?Mode=ShowImage&Item=" + Item;
  document.frmItem.submit();
  return false;
}
