function confirmFileDelete( deleteLink ) {
	var confirmDelete = confirm("Click OK to confirm delete.");
	if (confirmDelete)
		location = deleteLink;
	else
	alert("Delete procedure is canceled.");
}

function confirmPhotGroupDelete( deleteLink ) {
	var confirmDelete = confirm("Click OK to confirm delete. NOTE: Deleting this photo topic will delete the topic and all of its photos.")
	if (confirmDelete)
		location = deleteLink;
	else
		alert("Delete procedure is canceled.");
}

function OpenBrowseWindow(theURL,winName,features) { //v2.0
	window.open(theURL,winName,features);
}

function areSure() {
  return confirm("Are you sure?");
}