//	include_error_frequency.js	2007-05-08
//
//	jscript functions for the include_error_frequency (css & pl)

var thisErrorFrequency = '';

function initErrorFrequency(thisValue)	{
	thisErrorFrequency = thisValue;	// set the global to this input name
};

function setErrorFrequency(prmFormName, thisValue)	{
		// set the 'hidden' html variable to this name
	document[prmFormName][thisErrorFrequency].value	= thisValue;
};



