/**
 * @author matt
 */
// JavaScript Document

function getEL(id){
	var thisEL= null;

	if (document.getElementById)
		thisEL = document.getElementById(id);
	else if (document.all)
		thisEL = document.all(id);
		
	return thisEL;
}

function togglePlus( imgID, ma, imgSrcOn, imgSrcOff){
   var img 	= getEL(imgID);
   
   if (ma == "over") {
	   img.src = imgSrcOn;
	}else{
   	   img.src = imgSrcOff;
   }

}

function change_HTML(id,txt){
	var _EL=getEL(id)

	if(_EL){
		_EL.innerHTML= decodeURIComponent(txt);
	}
}