<!--

function check_in()

{

        txt = document.form1.mg1.value;

        if (txt == "") {

                alert("@以上が入力されていません");

                document.form1.mg1.focus();

                return false;

        }      

        txt = document.form1.mg2.value;

        if (txt == "") {

                alert("@以下が入力されていません");

                document.form1.mg2.focus();

                return false;

        }      
            









}



//-->