/** * Yamoon.js - All JS helpers for Yamoon's interface automation. */ /** * Redirect the current page using this.location. */ function redirect (page) { this.location = page; return true; } /** * Show a confirmation window for deletes */ function confirmDelete (type, name) { var text = "Are you sure you want to delete the " + type + " '" + name + "'?"; return confirm(text); }