/*
	Show and hide div content when clicking a link
	Version 1.0
	Last revision: 24.11.2009
	Modification of code found here: http://www.webmasterworld.com/forum91/441.htm by ashkosh
*/


function showhide(id){ 
if (document.getElementById){ 
obj = document.getElementById(id);
} 
if (obj.style.display == "none"){ 
obj.style.display = ""; 
} else { 
obj.style.display = "none"; 
} 
}  
