<!--
function delete_accounts() {
	var answer = confirm("You are about to delete the selected account(s) from the METROLink database.     \n"  +
						 "Do you wish to continue?")
	
	if (answer==true) {
		document.frmAccountListing.hdnAction.value="DELETE";
		frmAccountListing.submit();
	}		
}
//-->
