function popColorWindow(image_name) {
  newWindow = window.open('/display_color.cfm?image_name=' + image_name, 'view_color', 'width=200,height=200,resizable=yes,status=no,menubar=no,scrollbars=no');
  newWindow.focus();
}

function popProductImage(image_name) {
  productWindow = window.open('/display_product_image.cfm?image_name=' + image_name, 'view_product', 'width=600,height=600,resizable=yes,status=no,menubar=no,scrollbars=no');
  productWindow.focus();
}

function popMainProductImage() {
  productWindow = window.open('/display_product_image.cfm?image_name=' + document.image_rollover_form.main_large_image.value, 'view_product', 'width=600,height=600,resizable=yes,status=no,menubar=no,scrollbars=no');
  productWindow.focus();
}

function out_of_stock() {
  if(confirm('The item you have added to your cart is currently out of stock. Click "OK" to backorder this item or click "Cancel" to remove the item from your cart.')) {
    return true;
  } else {
    return false;
  }
}

function special_order() {
  if(confirm('This item is available by special order only. We will contact you about your order. Click "OK" to add this item to your cart or click "Cancel" to remove this item from your cart.')) {
    return true;
  } else {
    return false;
  }
}

  

