/* ***********************************************************************
* File:			util.js
* Author:		peter@iimg.com
* Commenced:	12.19.2002
* Overview:		general purpose javascript utilities
***********************************************************************
FUNCTIONS:
	jsValidateAbstract
*********************************************************************** */

/** *******************************************************
 * function:		jsValidateAbstract
 * author:			peter@iimg.com
 * description:	
 *						
 * returns:
 ********************************************************* */
function jsValidateAbstract()
{
	return true;
}

function checkAll(theForm, prefix) {
    for (i=0,n=theForm.elements.length; i < n; i++)
        if (theForm.elements[i].name.indexOf(prefix) != -1)
            theForm.elements[i].checked = true;
}

