<!--
function checkSearch ( form2 )
{
	if ( form2.keyword.value == 'ÇëÊäÈëËÑË÷µÄ¹Ø¼ü×Ö' )
	{
		alert ( "ÇëÊäÈë¹Ø¼ü×ÖËÑË÷!" );
		form2.keyword.focus ();
		return false;
	}	
	if ( form2.keyword.value == '' )
	{
		alert ( "ÇëÊäÈë¹Ø¼ü×ÖËÑË÷!" );
		form2.keyword.focus ();
		return false;
	}	
}

document.writeln("<form name=\"form2\" action=\"/cn/search/index.asp\" method=\"post\" onSubmit='return checkSearch(this)'>");
document.writeln("<input type=\"text\" name=\"keyword\" value=\"ÇëÊäÈëËÑË÷µÄ¹Ø¼ü×Ö\" class=\"txtBox\" onclick=\"this.value='';\" onFocus=\"this.value=''\" onBlur=\"if (value ==''){value='ÇëÊäÈëËÑË÷µÄ¹Ø¼ü×Ö'}\"/>");
document.writeln("<input type=\"submit\" name=\"go\" value=\"Go\" class=\"go\" />");
document.writeln("</form>");
//-->