<script language='javascript'>
function test(){
var _obj = document.all.ch.style;
var obj = document.all.pa.style;

if(obj.display == 'none'){
obj.display = '';
_obj.clip = 'rect(0,70,22,50)';
}else{
obj.display = 'none';
_obj.clip = 'rect(0,70,22,0)';
}
}
</script>
<div id='pa' style='position:absolute;width:100px;height:100px;background-color:#333333;left:100px;top:120px;z-index;1;display:none'>
<font color='#ffffff'>레이어 살리기라우</font>
</div>
<div id='ch' style='position:absolute;width:70px;height:22px;background-color:#333333;left:150px;top:150px;'>
<select style='width:70px'>
<option>a</option>
</select>
</div>
<a href='javascript:test()'>이거 어때요?</a>
Posted by 알 수 없는 사용자
,