// ÆË¾÷ ·¹ÀÌ¾î
function showhide(what){
    if (what.style.display=='')
        what.style.display='none';
		   
    else if (what.style.display=='none')
		what.style.display='';
}
