<!--//--><![CDATA[//><!--
function deleteApp(objFormID, schappid) {
	if (!confirm('Are you sure you want to delete this application?\nYou cannot retrieve it anymore!'))
		return false;
	if (isNaN(schappid) || schappid<=0)
		return false;
	var obj = document.getElementById(objFormID);
	obj['schappid'].value = schappid;
	obj['deleteApplication'].value = 1;
	obj.submit();
	return true;
}

function syncApp(objFormID, schappid) {
	if (!confirm('This will update and overwrite your draft applications with the latest data\nfrom "My Scholarship Application Form".\nAre you sure you want to do this?\nYou cannot undo this operation!'))
		return false;
	if (isNaN(schappid) || schappid<=0)
		return false;
	var obj = document.getElementById(objFormID);
	obj['schappid'].value = schappid;
	obj['syncApplication'].value = 1;
	obj.submit();
	return true;
}
//--><!]]>