Faq = {
	submit: function() {
		var req = new Request(
			{
				url: '/ajax/consult/',
				method: 'post', 
				onSuccess: function(responseText, responseXML) {
					div_id.innerHTML = responseXML.getElementsByTagName('content')[0].firstChild.nodeValue;
				}
			}
		);
		req.send('location_name=' + _location_name + '&count=' + _count + '&uri=' + encodeURIComponent(_uri));
	}
};
