function body_load() {
  parent.adjust_iframe_left_height(document.body.scrollHeight);
  
  window.__doPostBack = function (eventTarget, eventArgument) {
													//alert(eventTarget);
  
													//if(eventArgument.toLowerCase().indexOf("http")!=0)
												  parent.show_loading();
                  
                          var theform;
                          if (window.navigator.appName.toLowerCase().indexOf("microsoft") > -1) {
                            theform = document.Form1;
                          }
                          else {
                            theform = document.forms["Form1"];
                          }
                  
                          theform.__EVENTTARGET.value = eventTarget.split("$").join(":");
                          theform.__EVENTARGUMENT.value = eventArgument;
                          theform.submit();
                        }

}

function searchword_mouseover() {
  if (document.getElementById("searchword").value == document.getElementById("hld_keyword").value)
    document.getElementById("searchword").value = "";
}

function searchword_mouseout() {
  if (document.getElementById("searchword").value == "")
    document.getElementById("searchword").value = document.getElementById("hld_keyword").value;
}

function search_click() {
	keyword = document.getElementById("searchword").value;
  hld_keyword = document.getElementById("hld_keyword").value;
	
	if(keyword == "" || keyword == hld_keyword) {
		return;
	}
	else {
		parent.show_loading();
		parent.document.getElementById("ifr_user_right").src = "../faq/faq_right_second.aspx?keyword=" + escape(keyword) + "&search_type=0&SLanguage=" + document.getElementById("langNormal").value;
	}	
}

