﻿function SearchAct(inputName) {
	var SearchKeyValue = SearchCheck(inputName);
	if (SearchKeyValue == "") {
		document.getElementById(inputName).value = "";
		document.getElementById(inputName).style.color = "#000";
	}
}
function KeydownPost(e, inputName) {
	if (e.keyCode == 13)
		SearchPost(e, inputName);
}
function SearchPost(e, inputName) {
	var SearchKeyValue = SearchCheck(inputName);
	if (SearchKeyValue == "") {
		alert("请输入搜索关键词。");
		e.returnValue = false;
	} else {
		if (inputName == "SearchKey")
			location.href = "/Search.aspx?k=" + encodeURI(SearchKeyValue);
		else
			location.href = "/PMDict/SearchPMDict.aspx?k=" + encodeURI(SearchKeyValue);
	}
}
function SearchCheck(inputName) {
	var SearchKeyValue = document.getElementById(inputName).value;
	if (SearchKeyValue == "请输入搜索关键词")
		return "";
	else
		return SearchKeyValue;
}
swfobj("/Img/TOP/TOP_flash.swf", "Layer_top1", "980", "198", true);