// Popup window
function WinOpen(url) {
	window.open(url, "WinOpen",'toolbar=no,scrollbars=yes,resizable=yes,width=630,height=540');
}
// Check if they want to delete record
function getDeletePerm() {
		return window.confirm("Are you sure you want to delete this record?")
	}
