// Last modification : 12/09/2005.

/* Functions in this file :

	 f_imgAct(s)
	 f_imgInact(s)
*/

// --------------------------------------------------------------------------------
// f_imgAct(s)
// --------------------------------------------------------------------------------
// Set the active rollover image.

function f_imgAct(s) {
	document[s].src = eval(s + "_on.src");
}


// --------------------------------------------------------------------------------
// f_imgInact(s)
// --------------------------------------------------------------------------------
// Set the inactive rollover image.

function f_imgInact(s) {
	document[s].src = eval(s + "_off.src");
}