function showhide(id){	
	
	if (document.getElementById) { // DOM3 = IE5, NS6
	  
	  if (document.getElementById(id).style.display == 'none') {//is hidden
	   document.getElementById(id).style.display = 'block';
	   document.getElementById(id+'_title_hiding').style.display = 'none';
	   document.getElementById(id+'_title_showing').style.display = 'block';
	  }
	  else {
	   document.getElementById(id).style.display = 'none';
	   document.getElementById(id+'_title_hiding').style.display = 'block';
	   document.getElementById(id+'_title_showing').style.display = 'none';
	  }
	}
	else {
	 idth = id+'_title_hiding';
	 idts = id+'_title_showing';
	 if (document.layers) { // Netscape 4
	  if (document.id.display == 'none') {//is hidden
	   document.id.display = 'block';
	   document.idth.display = 'none';
	   document.idts.display = 'block';
	  }
	  else {
	   document.id.display = 'none';
	   document.idth.display = 'block';
	   document.idts.display = 'none';
	  }
	 }
	 else { // IE 4
			
	  if (document.all.id.style.display == 'none') { //is hidden
	   document.all.id.style.display = 'block';
	   document.all.idth.style.display = 'none';
	   document.all.idts.style.display = 'block';
	  }
	  else {
	   document.all.id.style.display = 'none';
	   document.all.idth.style.display = 'block';
	   document.all.idts.style.display = 'none';
	  }
	 }
	}

}

/**function showhideimg (id){	
	img_source = '';
	if (document.getElementById) { // DOM3 = IE5, NS6
	  //
	  if (!document.getElementById(id))
	   return "problema";
	  //
	  if (document.getElementById(id).style.display == 'none') //is hidden
	   img_source = 'img_hidden';
	  else
	   img_source = 'img_shown';
	}
	else {
	 if (document.layers) { // Netscape 4
		 
	  if (document.id.display == 'none') //is hidden
	   img_source = 'img_hidden';
	  else
	   img_source = 'img_shown';
	 }
	 else { // IE 4
			
	  if (document.all.id.style.display == 'none') //is hidden
	   img_source = 'img_hidden';
	  else
	   img_source = 'img_shown';
	 }
	}
	return 'images/' + img_source + '.jpg'

}**/
