// JavaScript Document

function popupWindow(file, width, height) {
	var left = (screen.width - width) / 2;
	var top = (screen.height - height) / 2;
	window.open(file, null, 'left=' + left + ',top=' + top + ',height=' + height + ',width=' + width + ',resizable=yes,status=yes,toolbar=no,menubar=no,location=no,scrollbars=yes');
}

function ConfirmDelete() {
	var vString;
	vString = "Are you sure you wish to delete this record?";
	vResult = confirm(vString);
	return vResult;
}
