function submitForm(form_id) {
	
	document.getElementById(form_id).submit();
}

function loadDiv(div, url) {
	new Ajax.Updater(div, url, {asynchronous:true, evalScripts:true});
}

function loadDiv2(div,url) {
	new Ajax.Updater(div, url, {asynchronous:true, evalScripts:true});
}