


//Generic alert to be used with links to delete things.  Simply a confirmation of intent to delete.
function deleteCheck(objName) {
	return confirm("This will permanently delete this " + objName + ".  Are you sure you want to do this?");
}

//Alert to be used with removing features from the header roation.  
function rotationRemovalCheck(objName) {
	return confirm("This will remove this feature from the header rotation list.  Are you sure you want to do this?");
}