function openWindow(strURL, strName, iWidth, iHeight,ynResize,ynScrollbars) {        
        window.open(strURL,strName,"height=" + iHeight + ",width=" + iWidth + ",status=no,toolbar=no,scrollbars=" + ynScrollbars + ",menubar=no,location=no,resizable=" + ynResize + "");
}

function adjustBars(){
    var iHeight;
    var iWidth;
    iHeight = window.innerHeight;//for FF
    iWidth = window.innerWidth;//for FF
    
    if(isNaN(iHeight)){
        //for IE
        iHeight = document.body.offsetHeight;
    }
    if(isNaN(iWidth)){
        //for IE
        iWidth = document.body.offsetWidth;
    }
    
    if(window.innerHeight){
        rightBarLeftShadow.style.height = iHeight;
        rightBarContent.style.width = iWidth - 665;
        rightBar.style.width = iWidth - 665;
        rightBarTopShadow.style.width = iWidth - 660;
        topShadow.style.width = iWidth;
        header.style.width = iWidth;        
    }
    else{
        document.all.rightBarLeftShadow.style.height = iHeight;
        document.all.rightBarContent.style.width = iWidth - 665;
        document.all.rightBar.style.width = iWidth - 665;
        document.all.rightBarTopShadow.style.width = iWidth - 660;
        document.all.topShadow.style.width = iWidth;
        document.all.header.style.width = iWidth;    
    }        
}