function showhide(x){
	var obj = document.getElementById(x);
	if(obj.style.display == ""){
		obj.style.display = "none";
	} else {
		obj.style.display = "";
	}
}