function simple_vote (vobj, vdir, vmeta, hash) {
	$.ajax({
		url: '/ajax/?module=simple-vote&dir=' + vdir + '&meta=' + vmeta + '&hash=' + hash,
		type: 'GET',
		dataType: 'xml',
		timeout: 30000,
		error: function(){},

		success: function(xml) {
			var cid = $('id',xml).text();
			var cval = $('value',xml).text();

			if (cid == 0) { 
				// Here we can essentially get away with doing nothing
				// considering there is no ID to update
			} else {
				$("span#" + vobj + '-vote').html(cval);
			}
		}
	});
}