function gettesti(id) {
	var url = 'modules/testimonials.php?testimonial='+id;
	// notice the use of a proxy to circumvent the Same Origin Policy.

	new Ajax.Request(url, {
		method: 'get',
		onSuccess: function(transport) {
			var notice = $('testimonial');
			notice.innerHTML = transport.responseText;
		}

	});
}
