/*
	¿ëµµ : Ã¢Å©±â º¯°æ(³»ºÎÃ¢±âÁØÀ¸·Î »çÀÌÁî º¯°æÇÔ)
	ÀÛ¼ºÀÚ : agassi
*/
topW = 0;
topH = 0;

function setWH(){
   if (document.all){
	   cW=document.body.offsetWidth;
	   cH=document.body.offsetHeight;
	   window.resizeTo(500,500);
	   barsW=500-document.body.offsetWidth;
	   barsH=500-document.body.offsetHeight;
	   wW=barsW+cW;
	   wH=barsH+cH;
	   window.resizeTo(wW,wH);
   }
   else{
	   wW=window.outerWidth;
	   wH=window.outerHeight;
   }
   topW = wW;
   topH = wH;
}

function buildWH() {
    setWH();
    topW = topW - document.body.clientWidth;
    topH = topH - document.body.clientHeight;
}

function resizeWH(width,height) {
   reW = width + topW;
   reH = height + topH;
   window.resizeTo(reW,reH);
}