/***********************************************************************
 * (C) SCC Informationssysteme GmbH 2000 - 2004                        *
 ***********************************************************************/

/////////////////////////////////////////////////////////////
// Helper for the Common Controls Framework
/////////////////////////////////////////////////////////////

/*
+ ---------------------------------------------------------------------------------+
| Purpose..: Helper for the ListControl object
|
| Date        Author            Notice
| ----------  ----------------  ----------------------------------------------------
| 08.04.2004  G.Schulz (SCC)    Erstversion
|
+ ---------------------------------------------------------------------------------+
*/

/**
 * ListControl Helper
 */
function ListHelp() {
}
/**
 * Unchecks all Checboxes specified in the argument
 * param: items An array of input fields
 */
function ListHelp_uncheck(items) {

	for (var i=0; i < items.length; i++) {
		if (items[i].type == 'checkbox' ) {

			// uncheck checkbox
			items[i].checked = false;
		}
	}
}
new ListHelp();
ListHelp.uncheck   = ListHelp_uncheck;


