function redirect(link) {
	window.location=link;
}

var db_cal, db_cal2;
function setup_calendar() {
  if ($('temp_search_start_date') && $('temp_search_end_date')) {
  	dp_cal = new Epoch('epoch_popup', 'popup', $('temp_search_start_date'));
  	dp_cal2 = new Epoch('epoch_popup2', 'popup', $('temp_search_end_date'));
  }
}

// Place your application-specific JavaScript functions and classes here
// This file is automatically included by javascript_include_tag :defaults
function highlight_div(checkbox_node) {
	label_node = checkbox_node.parentNode;

  if (checkbox_node.checked) {
		label_node.style.backgroundColor='#D7ECFB';
		label_node.style.color='#083655';
	}
	else {
		label_node.style.backgroundColor='#fff';
		label_node.style.color='#000';
	}
}

function clear_global_search_fields() {
  $('temp_search_name').value = '';
  $('temp_search_id').value = '';
  $('temp_search_start_date').value = '';
  $('temp_search_end_date').value = '';
}