/* Confirm they wish to purchase */ function confirmPurchase(i,c,id) { var answer = confirm('Are you sure you would like to purchase ' + i + ' for ' + c + ' credits?'); if (answer) { window.location = "store.php?a=pi&id=" + id; } }