
function Pick(x)
{
    document.getElementById(x).checked= true;
}

function AutoTurnTo(url, text)
{
    location. href = url + text;
}

function Validate()
{
    ret = confirm("確定嗎??");

    return (ret ? true : false);
}

function Calendar(txtId, btnId)
{
  Calendar.setup(
    {
      inputField  : txtId,         // ID of the input field
      ifFormat    : "%Y-%m-%d",    // the date format
      button      : btnId,       // ID of the button
      align          :    "Tr",           // alignment (defaults to "Bl")
      singleClick    :    true
    }
  );
}

function HtmlArea(id)
{
    var config = new HTMLArea.Config();
    config.toolbar = [
        ['bold', 'italic', 'underline', 'separator']
    ];
    HTMLArea.replace(id, config);
}
