// confirmSubmit v01
// Author: Mitchell Gohman
// 2007-08-02
function confirmDelete()
	{
	var agree=confirm("Are sure you wish to delete this item? This action cannot be undone.");
	if (agree)
		return true ;
	else
		return false ;
	}

function confirmFileRemove(thisID) {
		var thisElement = document.getElementById(thisID);
		if (thisElement.checked)
			{
			if (!confirm('By checking this box you are choosing to delete this file permenantly. Are you sure you want to remove the file?'))
				{
				thisElement.checked = false;
				}
			}
	}