function confirmDelete() {
  return window.confirm("Are you sure you want to delete this record?");
}

function newWindow(url, nameW, height, width) {
	if (navigator.appVersion.indexOf('4') != -1) {
		xTop = screen.width/2 - (width/2);
		yTop = screen.height/2 - (height/2);
		window.open(url, nameW, 'height='+height+',width='+width+',scrollbars=0,resizable=0,menubar=0,toolbar=0,status=0,location=0,directories=0,left=' + xTop + ',top=' + yTop + '');
	} else {
		window.open(url, nameW, 'height='+height+',width='+width+',scrollbars=0,resizable=0,menubar=0,toolbar=0,status=0,location=0,directories=0,left=100,top=200');
	}
}

function helpWindow(url) {
		window.open(url, 'eHelp', 'height=560, width=400, scrollbars=1, resizable=1, menubar=1, toolbar=0, status=0, location=0, directories=0');
		return false;
}