// サイト内検索の入力フォームをクリック時、テキストを削除
function textDelete() {
    text = document.getElementById("search-text");
    text.value = "";
}

// 画像クリック時、拡大画像を別窓で表示
function MM_openBrWindow(theURL,winName,features) {
    window.open(theURL,winName,features);
}