
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

/*-----------------iframe自動適應高度---------------------------*/

function initApp() {
var f=window.frames["frameBord"];
$("frameBord").style.height=f.document.body.clientHeight+20+"px";
}
function $(Obj) {
return document.getElementById(Obj);
}
window.onload=initApp;


