//Cancel Button Script

function go(loc){ location.replace(loc); } //replace the current location with the passed location
function pauseAndGoto(loc){ setTimeout('go(\'' + loc + '\')', 100); } //pause for 100ms, and then replace the current location with the passed location
function pop(loc, title){ window.open(loc, title); } //open the passed location in a popup

//HTML Button Code:
//<input type="button" value="cancel" name="B3" class="font" onclick="go('customer_search_manager.php');">