function deleteSurvey(ID){
	if(confirm("Are you sure you want to delete this survey?")){
		document.getElementById('messageArea').style.display = "block";
		updateContentArea("messageArea", "action=deleteSurvey&surveyID="+ID, "survey_functions.ajax.inc.php");
		document.getElementById('unpub_'+ID).style.display = "none";
		}
	}

function startSending(){
	document.getElementById('sendingBox').style.display = "block";
	updateContentArea('empty', '1=1', 'survey_send.php', 'updateProgress()')
	}