/* ポップアップ */

function newWindow(url,winName,width,height,left,top) {
param = "width=" + width + ",height=" + height + ",tool bar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,left=" + left + ",top=" + top;
newWin = window.open(url,winName,param);
newWin.resizeBy(0,0);
newWin.focus();
}
