/* 空禁止 */
function cantEmpty(name, str) {

    /* 前後の半角スペース・全角スペースを除去 */
    str = str.replace(/^(\s|\　)*/, "");
    str = str.replace(/(\s|\　*)$/, "");

    /* 入力されていない場合 */
    if (str == "") {
	alert(name + "を入力してください。");
	return false;

    /* 入力された場合 */
    } else {
	return true;
    }
}

/* 送信 */
function submit(formName) {
    document.forms[formName].submit();
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
	window.open(theURL,winName,features);
}
