<!--
function checkSearch ( form2 )
{
	if ( form2.keyword.value == 'Enter the keywords' )
	{
		alert ( "Please enter the keywords" );
		form2.keyword.focus ();
		return false;
	}	
	if ( form2.keyword.value == '' )
	{
		alert ( "Please enter the keywords" );
		form2.keyword.focus ();
		return false;
	}	
}

document.writeln("<form name=\"form2\" action=\"/en/search/index.asp\" method=\"post\" onSubmit='return checkSearch(this)'>");
document.writeln("<input type=\"text\" name=\"keyword\" value=\"Enter the keywords\" class=\"txtBox\" onclick=\"this.value='';\" onFocus=\"this.value=''\" onBlur=\"if (value ==''){value='Enter the keywords'}\"/>");
document.writeln("<input type=\"submit\" name=\"go\" value=\"Go\" class=\"go\" />");
document.writeln("</form>");
//-->
