function checkCheckBox(f) {
    count = 0;
    for (var i=0;i<f.elements['ids[]'].length;i++){
        if(f.elements['ids[]'][i].checked){
            count++;
        }
    }
    //一つもチェックされてない場合
    if(count==0){
        alert("一つもチェックされておりません。");
        return false;
    }
    return true;
}
function setText(tagName,theText)
{
    if (document.all) window[tagName].innerText = theText;
    if (document.layers)
    {
        document[tagName].document.open("text/html");
        document[tagName].document.write(theText);
        document[tagName].document.close();
    }
}

