function submitThis(f,act,conf){
//f=reference to form (f param should have no 's around when function called), conf=confirm text (if confirm desired), act=f's action(URL to submit to)
	if(f==null)f=this.form;
	if(act!=null)f.action=act;
	conf!=null ? procede=confirm(conf) : procede=true
	if(procede)f.submit();
}