	function SubmitForm(target,body,updatediv) {
		var myAjax = new Ajax(target, {
			method: 'post', 
			postBody: $(body), 
			update: $(updatediv)
		}).request();
	}
	
		
	// update div getting a given url
	function ajaxLoad(id,url) {
		var myAjax = new Ajax(url, {
			method: 'get', 
			update: $(id)
		}).request();
	} 


window.addEvent('domready', function() {	
	
});