﻿
//開新視窗
function OpenWin(strUrl) {
        window.open(strUrl, '', 'height=600,width=700,toolbar=no,location=no,status=yes,menubar=no,scrollbars=yes,resizable=no,directories=no');
}


//iframe自動調整高度
function iFrameHeight(iframename) { 
    var h = 0; 
    if ( !document.all ) { 
        h = document.getElementById(iframename).contentDocument.height; 
        document.getElementById(iframename).style.height = h + 60 + 'px'; 
    } else if( document.all ) { 
        h = document.frames(iframename).document.body.scrollHeight; 
        document.getElementById(iframename).style.height = h + 20 + 'px'; 
    } 
} 
