﻿//输入框提示，支持非IE类浏览器
document.getElementById("keyword").onfocus=function(){
	if(document.getElementById("keyword").value=="输入关键字")document.getElementById("keyword").value="";
	document.getElementById("keyword").className="inputT_black";
}
document.getElementById("keyword").onblur=function(){
	if(document.getElementById("keyword").value=="")document.getElementById("keyword").value="输入关键字";
	document.getElementById("keyword").className="inputT";
}

//输入框提示，支持IE类浏览器
document.form1.keyword.onfocus=function(){
	if(document.form1.keyword.value=="输入关键字")document.form1.keyword.value="";
	document.form1.keyword.className="inputT_black";
}
document.form1.keyword.onblur=function(){
	if(document.form1.keyword.value=="")document.form1.keyword.value="输入关键字";
	document.form1.keyword.className="inputT";
}
