//<script language="javascript">
function Delete(strID) {
	if (confirm('Are you sure you want to permanently delete item ' + strID + '?')) {
		with (document.frmDelete) {
			txtID.value = strID;
			submit();
		}
	}
///catalog/maintenance/delete.php?id=
}

function Edit(strID) {
	with (document.frmEdit) {
		txtID.value = strID;
		submit();
	}
}

function Find() {
	with (document.frmMain) {
		if (search.value == '') {
			alert('Please enter text in the SEARCH TEXT field then click "Find Items"');
		}
		else {
			submit();
		}
	}
}