// JavaScript Document

function openNewWin2(url, name, w, h) {
	var newWin;
	var options = "toolbar=no,menubar=yes,status=yes,scrollbars=yes,resizable=yes";
	newWin = window.open(url, name,"width=" + w + ",height=" + h + options);
	newWin.focus();
}

// sample
// <a href="./window.html" title="別ウインドウで開きます" target="_blank" onclick="openNewWin2('./window.html', '', 700, 700); return false;">新しいウインドウ</a>
