function conf(msg, id) {
var answer = confirm(msg);
if (answer) {
window.location='redeem.php?redemption_id='+id+'#ORDER';
}else{
return false;
}
}
