function resetForms() { 
	for (i=0; i < document.forms.length; i++) {
     document.forms[i].reset();
   }
} 

