/*  invisiform.js
 *
 * Author:	Alexi Kostibas (alexi@kostibas.com)
 * Created:	2005/11/17
 * Modified:	2005/11/17
 * 
 * For use with inivisform.inc.php.  This JavaScript supplies a submit function
 * that will make the form easier to submit, and seem more like a link.
 *
 */

// Submits the form with the supplied ID
function IF_SUBMIT(formId) {
	document.getElementById(formId).submit();
}
