﻿//


    function confirmDelete()
    {
      var x = confirm("Are you sure you want to DELETE?");
      if (x)
      { return true;
      }
      else
      { alert("Delete cancelled.");
        return false;
      }
    }
    function pagejump(spotId){
	if (spotId != 0){
		document.location.href = spotId;
	}
    }
    
