/**************************************************************************
 * ■ 株主優待用 検索窓
 **************************************************************************/
var GuideSentence_s = '社名or証券コード';
function showformguide_s(obj) {
 // 入力案内を表示
      if( obj.value == '' ) {
         obj.value = GuideSentence_s;
		 var divObj = document.getElementById("YutaiKey");
		 obj.className = "NameTxt";
      }
}
function hideformguide_s(obj) {
 // 入力案内を消す
      if( obj.value == GuideSentence_s ) {
         obj.value='';
		 var divObj = document.getElementById("YutaiKey");
		 obj.className = "NameTxt2";
      }
}
function hideformguide_s2(obj) {
// 入力案内を消す（ボタンに触れた時）
      if( obj.value == GuideSentence_s ) {
         obj.value='';
		 var divObj = document.getElementById("YutaiKey");
		 obj.className = "NameTxt2";
      }
}
 

 
