<!-- Start Confirmation Script -->

function confirmDelete(NextPage)
{
	if (confirm("Are you sure you want to delete this item?"))
		window.location = NextPage;
}

function confirmCancel() 
{
	return confirm("Click Ok and you will be contacted to confirm your cancelation by Boot Plus Support.");
}


<!-- End Confirmation Script -->