<!--
	// _init.js
	// Copyright (c) 2008 Big River Data.  All Rights Reserved.
	// To obtain a legal license for this software, contact info@bigriversystems.com.
	// Unauthorized usage, distribution and/or reverse engineering are strictly prohibited and may result in legal action.
	// code generated by the appGenerator on January 27, 2008

	function init() {
		frm = false;
		if (document.inputForm) {
			// if the form (element) exists;
			var frm = document.inputForm;
			// hide the following rows initially (when the form/page first loads);
	  	} 
	  	
		if (document.modifyForm) {
			// if the form (element) exists;
			var frm = document.modifyForm;
			// hide the following rows initially (when the form/page first loads);  
		}  
		if (frm) {
	
		} // end-if form exists;
	} // close init function;

//-->