﻿// JScript File

//used for confirmation of field delete
function ConfirmFieldDelete() {
	return confirm('This record will be permanently deleted, are you sure you want to delete?');
}

//used for confirmation to proceed
function ConfirmProceed() {
	if (Page_ClientValidate()) { return confirm('Are you sure you want to proceed?'); } return true;
}

function AlertBadVinNumberMessage() {
	return alert('The vin number is not valid.');
}

function AlertNoFilterObjectsMessage() {
	return alert('Please select at least one filter item.');
}

//used for confirmation to proceed
function ConfirmBidProceed() {
	if (Page_ClientValidate()) { return confirm('This vehicle has been marked for bid. Are you sure you want to proceed?'); } return true;
}