// JavaScript Document// Confirm Delete function confirmDelete() {	var agree = confirm("Are you sure you wish to delete this record?");	if (agree) {		return true;	} else {		return false;	}}// Stripe tablesfunction stripe_table() {	$('table.striped').find('tbody tr:even').addClass("striped_even");	$('table.striped').find('tbody tr:odd').addClass("striped_odd");	$('table.striped').find('tbody tr').hover(function(){		$(this).addClass("striped_hover");		},function(){		$(this).removeClass("striped_hover");	});}$(document).ready(function(){	 stripe_table();	 	 // scroll to same-page anchors	 $('a[href^=#]:not(.noscroll)').click(function() {		if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'')		&& location.hostname == this.hostname) {			var $target = $(this.hash);			$target = $target.length && $target || $('[name=' + this.hash.slice(1) +']');			if ($target.length) {				var targetOffset = $target.offset().top;				$('html,body').animate({scrollTop: targetOffset}, 1000, 'easeInOutCirc');			  return false;			}		}	});});