function adjustIFrameSize(iframeWindow) { 
    if(!iframeWindow.name) iframeWindow = document.getElementById("bbs").contentWindow; 
    if(iframeWindow.document.height) { 
        var iframeElement = document.getElementById(iframeWindow.name); 
        iframeElement.style.height = iframeWindow.document.height + 15 + 'px'; 
        //iframeElement.style.width  = iframeWindow.document.width + 15 + 'px'; 
    } else if(document.all) { 
        var iframeElement = document.all[iframeWindow.name]; 
        if(iframeWindow.document.compatMode && iframeWindow.document.compatMode != 'BackCompat') { 
            iframeElement.style.height = iframeWindow.document.documentElement.scrollHeight + 5 + 'px'; 
            //iframeElement.style.width  = iframeWindow.document.documentElement.scrollWidth + 5 + 'px'; 
        } 
        else { 
            iframeElement.style.height = iframeWindow.document.body.scrollHeight + 5 + 'px'; 
            //iframeElement.style.width  = iframeWindow.document.body.scrollWidth + 5 + 'px'; 
        } 
    } 
} 


// ºóÄ­ÀÌ ÀÖ´ÂÁö È®ÀÎ 
function CheckSpaces(strValue) {   //°ø¹éÀ» Ã¼Å©ÇØ¼­ Boolean °ªÀ» ³Ñ°Ü ÁÝ´Ï´Ù.
    var flag=true;

    if (strValue!=" ") {
       for (var i=0; i < strValue.length; i++) {
          if (strValue.charAt(i) != " ") {
             flag=false;
             break;
          }
       }
    }
    return flag;
}

function wopen(N,H,K){
     window.open(N,H,K)
}