// JavaScript Document

function info_on(id) {

   document.getElementById(id).style.display = 'block';

}

function info_off(id) { 

document.getElementById(id).style.display = 'none';

}
