/* JavaScript Document */

function frmoneSubmit() {
	var theform;
	if (window.navigator.appName.toLowerCase().indexOf("microsoft") > -1) {
		theform = document.frmone;
	}
	else {
		theform = document.forms["frmone"];
	}
	theform.submit();
}