function submitTo(name, url){
	document.forms[name].action = url;
	document.forms[name].submit();
}
