function fncShow(id, xy, type)
{
var obj = document.getElementById(id);
switch(xy)
{
case 'X' :
obj.style.overflowX = type;
break;
case 'Y' :
obj.style.overflowY = type;
break;
}
}
축에 따라 설정이 가능하며 overflow 속성은 visible | hidden | scroll | auto | inherit 등이 있다.