function auto_resize()
{
try{

//------ 스크롤이 있을 때
// v_width = document.body.scrollWidth + 22;
// v_height = document.body.scrollHeight + 25;

//------ 스크롤이 없을 때

 v_width = document.body.scrollWidth + 6;
 v_height = document.body.scrollHeight + 25;

 window.self.resizeTo!(v_width,v_height);
}

Posted by 알 수 없는 사용자
,