// JavaScript1.2 Document
function botao_on(id,img)
	  {
	   document.getElementById(id).src=img;
      }
	  
	 function botao_off(id,img)
	  {
	   document.getElementById(id).src=img;
	  }

	  
