// Place your application-specific JavaScript functions and classes here
// This file is automatically included by javascript_include_tag :defaults
function eatNonNumeric(text_field){
	text_field.value = text_field.value.replace(/[^ 0-9()-]/g, '');
}

var msg = 'You haven\'t saved your changes.';

function cancel_and_goto_talent_home(){
	document.location = '/talent';
}