
function Feature_RemoveImage(imageid,caller) {

   if(confirm("Do you really want to remove image '" + imageid + "' from this feature?")) {

      window.location.href = 'shoppingcart.php?operator=removefromfeature&operand=image&data=' + imageid;

   }
}

function Feature_Open(featureid) {
   Update('second','FE|' + featureid);
}

function Feature_RemoveFeature(featureid) {

   if(confirm("Do you really want to remove this feature?"))
      window.location.href = 'shoppingcart.php?operator=removefeature&operand=feature&data=' + featureid;   
}
