function OpenWindow(fPath,wName,wWidth,wHeight)
{
//toolbar ツールバー
//location アドレスバー
//directories ツールバー 更新などアイコン
//status ステータスバー 下
//menubar メニューバー
//scrollbars スクロールバー
//resizable サイズ変更
    window.open(fPath, wName, "left=10,top=10,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width="+wWidth+",height="+wHeight)

}
function OpenWindowy(fPath,wName,wWidth,wHeight)
{
    window.open(fPath, wName, "left=10,top=10,toolbar=yes,location=yes,directories=yes,status=no,menubar=yes,scrollbars=yes,resizable=yes,width="+wWidth+",height="+wHeight)

}
function SwitchPic(IMGNAME, IMGPATH)
{
    document.images[IMGNAME].src = IMGPATH;
}

function PreloadPic(IMGNAME, IMGPATH)
{
    IMGNAME     = new Image();
    IMGNAME.src = IMGPATH;
}
function CloseWin(){
    window.close();
}

