function openSubWin(path, w, h){
newWindow = window.open(path, "syosai", "width=" + w + ",height=" + h + ",menubar=yes,scrollbars=yes,resizable=yes");
newWindow.moveTo(10,10);
newWindow.focus();
}

