/* ==============================================================

	SystemHouseFukuchiyama 
	http://www.shfweb.com

*/


function addtag(val) {
    var elt = YAHOO.util.Dom.get("tagedit");
    if (elt != null) {
        str = elt.value;
        str = str.replace(/^[\s　,、]+|[\s　,、]+$/g, ""); // trim(全角・半角のスペース、全角・半角のカンマを取り除く) // \sが空白文字

        if (str.length > 0) {
            str += ", ";
        }

        elt.value = str + val + ", ";
        elt.focus();
    }
}


function module_showhide() {
    if (YAHOO.shf.module.cfg.getProperty("visible") == true) {
        YAHOO.shf.module.hide();
    } else {
        YAHOO.shf.module.show();
    }
}