function accessitems(uqid,date,time,event,sortname,person,location) {	this.uqid = uqid;	this.date = date;	this.time = time;	this.event = event;	this.sortname = sortname;	this.person = person;	this.location = location;}function hardwareitems(uqid,date,time,event,reason,location) {	this.uqid = uqid;	this.date = date;	this.time = time;	this.event = event;	this.reason = reason;	this.location = location;}function notifyitems(uqid,date,time,event,sortname,person,location) {	this.uqid = uqid;	this.date = date;	this.time = time;	this.event = event;	this.sortname = sortname;	this.person = person;	this.location = location;}function recentitems(uqid,date,time,action,info,operator) {	this.uqid = uqid;	this.date = date;	this.time = time;	this.action = action;	this.info = info;	this.operator = operator;}function reportitems(uqid,filename,path) {	this.uqid = uqid;	this.filename = filename;	this.path = path;	}function eventitems(uqid,date,time,location,building,event,reason,sortname,person,group) {	this.uqid = uqid;	this.date = date;	this.time = time;	this.location = location;	this.building = building;			this.event = event;			this.reason = reason;			this.sortname = sortname;		this.person = person;	this.group = group;}function eventids(uqid) {	this.uqid = uqid;}var array_quick = new Array();// no itemsvar temp_quick = new Array();// time, action, info, operatorvar temp_recent = new Array();//temp_recent[0] = new recentitems("411111111","11/30/05","4:56pm","Add to Group: Management","Christopher Scribblemonger","Shawn");//temp_recent[1] = new recentitems("411111112","11/30/05","4:43pm","New User","Christopher Scribblemonger","Shawn");//temp_recent[2] = new recentitems("411111113","11/30/05","4:31pm","Edit Schedule","Shift II","Francisco");// filename, pathvar temp_report = new Array();//temp_report[0] = new reportitems("011111111","Access Report 102305.pdf","/pdf/");// time, event, sortname(lastname), person, locationvar temp_access = new Array();//temp_access[0] = new accessitems("111111112","11/30/05","5:12pm","Location Denied","Wadden","Douglas Wadden","Management Office, Bldg 1");// time, event, reason, locationvar temp_hardware = new Array();//temp_hardware[0] = new hardwareitems("211111111","11/30/05","4:42pm","Communication Failure","Communication Failure","Engineering, Bldg 1");// time, event, sortname(lastname), person, locationvar temp_notify = new Array();//temp_notify[0] = new notifyitems("311111111","11/30/05","5:12pm","Location Denied","Wadden","Douglas Wadden","Management Office, Bldg 1");// for the activity tablevar temp_events = new Array();//temp_events[0] = new eventitems("33434343","12/3/05","9:12am","Front Lobby","Building 1","Access","","McDaniel","Jesse McDaniel","Staff");