// JavaScript Document
function mioButtonsFindForm(htmlObj){
	if(typeof htmlObj != 'object') return;
	if(htmlObj.tagName.toUpperCase() == 'FORM'){
		return htmlObj.submit();
	}else if(htmlObj.tagName.toUpperCase == 'BODY'){
		return null;
	}else{
		mioButtonsFindForm(htmlObj.parentNode);
	}
	return null;
}