<!-- hide script from old browsers


function hide_id(param) {
document.getElementById(param).style.display = 'none';
}


function toggleview(div_id) {

if (document.all || document.getElementById) {

 if(document.all) {	//se è Microsoft...
 		strato = document.all(div_id).style;}
 else if (document.getElementById) {	//se è W3C DOM...
 		strato = document.getElementById(div_id).style;}


if (strato.display == 'block') {
		strato.display = 'none';
}
else {
		strato.display = 'block';
}
} // if (document.layers || document.all || document.getElementById)
} // toggleview

// end hiding script from old browsers -->

