/*
** 入力フォーム部分
*/
function ClearText(f)
{
    text = f.search.value;
    if (text == "ブログ内を検索")
    {
        f.search.value = "";
    }
}
function BlurText(f)
{
    text = f.search.value;
    if (text == "")
    {
        f.search.value = "ブログ内を検索";
    }
}