﻿ function hand_over(id)
 {
	  document.getElementById(id).style.display='';
 }
 
 function hand_out(id)
 {
	  document.getElementById(id).style.display='none';
 }