function submitAction(url) {
	document.forms[0].action = url; 
	document.forms[0].method = 'post';
	$(":button, :submit").each(function(){
		this.disabled = true;
	})
	document.forms[0].submit();
}
