   function checkSearch ( formsearch )
{		
	if ( formsearch.keyword.value == '' )
	{
		alert ("Please enter a keyword!");
		formsearch.keyword.focus ();
		return false;
	}	
}

document.writeln("<form method=\"post\" id=\"searchform\" name=\"formsearch\" class=\"search_input\" action=\"/en/search/\" onSubmit='return checkSearch(this)'>");
document.writeln("<ul><li class=\"search_l\">Search: </li><li class=\"search_c\"><input type=\"hidden\" name=\"kwtype\" value=\"0\" /><input name=\"searchtype\" type=\"hidden\" id=\"searchtype\" value=\"titlekeyword\">");
document.writeln("<input type=\"text\" value=\"\" name=\"keyword\" class=\"myinput\" onfocus=\"if(this.value==''){this.value='';}\"  onblur=\"if(this.value==''){this.value='';}\" />");
document.writeln("</li><li><input type=\"submit\" name=\"submit\" value=\"\" class=\"search_r\"/></li></ul>");
document.writeln("</form>");
