function showhide(iddiv){ 
		var id=document.getElementById(iddiv);
		id.style.display=(id.style.display=="none")?"block":"none";
}
