800){
document.body.style.overflow = "hidden";
}else{
document.body.style.overflow = "auto";
}
//=====================
//サイドバーの高さ調整
//=====================
var objSidebar = $("#p_left");
if(objSidebar.length){
var n_sidebar_h = wnd_h - header_h;
if(n_sidebar_h <= 800){
objSidebar.height(800);
}else{
objSidebar.height(n_sidebar_h);
}
}
//====================
// テンプレート管理エディタ高さ
//====================
if(objEditor != undefined){
var editor_h = (wnd_h - header_h) - 200;
$('#container_editor').height(editor_h);
objEditor.layout();
}
}
/*
*ウィンドウのリサイズ検知
*/
var timer = false;
$(window).resize(function() {
if (timer !== false) {clearTimeout(timer); }
timer = setTimeout(function() { wnd_resize();}, 10);
});