﻿/*
Enterキー押下時のsubmitボタンを指定
*/
function submitcontrol(type)
{
    if(event.keyCode==13)
    {
        document.forms[0][type].focus();
    }
}

/*
画像表示用のウィンドウを開く
*/
function wopen1(url, w, h)
{
    window.open(url,null,"toolbar=0,menubar=0,scrollbars=0,location=0,status=0,left=0,top=0,width=" + w +",height=" + h)
}
