function processEventUpdate(t,d,l,ll,divID,id) {
	var Etitle = document.getElementById(divID+t).value;
	var Edate = document.getElementById(divID+d).value;
	var Elocation = document.getElementById(divID+l).value;
	var ElocLink = document.getElementById(divID+ll).value;
	
	if (Etitle == "") {
		Etitle = "General Event";
	}
	
	if (Edate == "") {
		Edate = "1/1/2000 12:01:00 AM";
	}
	
	if (Elocation == "") {
		Elocation = "Location TBA";
	}
	
	if (ElocLink == "") {
		ElocLink = "";
	}
	
	ajaxUpdate('xmlEventUpdate.asp?id='+id+'&t='+Etitle+'&d='+Edate+'&l='+Elocation+'&ll='+ElocLink+'&div='+divID,divID);
	
	return false;
}

function processUserUpdate(n,e,a,m,divID,id) {
	var Uname = document.getElementById(divID+n).value;
	var Uemail = document.getElementById(divID+e).value;
	var Uadmin = document.getElementById(divID+a).value;
	var Umod = document.getElementById(divID+m).value;
	
	if (Uname == "") {
		Uname = "Anonymous Face " + Math.round(Math.random()*1000);
	}
	
	if (Uemail == "") {
		Uemail = "";
	}
	
	if (Uadmin == "") {
		Uadmin = "";
	}
	
	if (Umod == "") {
		Umod = "";
	}
	
	ajaxUpdate('xmlUserUpdate.asp?id='+id+'&n='+Uname+'&e='+Uemail+'&a='+Uadmin+'&m='+Umod+'&div='+divID,divID);
	
	return false;
}