
	function buttRoll(id,src,state){
		var thisButt = document.getElementById(id);
		thisButt.src = 'graphics/'+src+'_'+state+'.gif';
	
	}
	function f_onBg(src,clsName){ 

			src.className = clsName;
			src.style.cursor = 'hand';
		} 
	
	function f_offBg(src,clsName){ 
			src.style.cursor = 'default'; 
			src.className = clsName;
		} 
