function runAjax (func, divid, method, form) {
	new Ajax(func, {
		method: method,
		postBody: $(form),
		getBody: $(form),
		update: divid
	}).request();
}	