function modify_cart() {
	document.getElementById('modifycart').value = '1';
	document.getElementById('validatecart').value = '0';
  document.getElementById('view_cart_frm').submit();
}

function remove_product(key,path){
/*Added javascript to implement the checkbox remove functionality (Bug1054:20-04-2009)*/
//alert(key);
document.location.href = path + '/remove_from_cart/product_id/' + key;
}

