//	include_speaking_count.js	2007-05-08
//
//	jscript functions for the include_speaking_count (css & pl)

var thisSpeakingCount = '';

function initSpeakingCount(thisValue)	{
	thisSpeakingCount = thisValue;	// set the global to this input name
};

function setSpeakingCount(prmFormName, thisValue)	{
		// set the 'hidden' html variable to this name
	document[prmFormName][thisSpeakingCount].value	= thisValue;
};

function incrSpeakingCount(prmFormName, img_src) {
	document[prmFormName][img_src].value++;
}

