<!--
function dofocused( txt )
{
		if ( txt.value == ' ----- Keyword ----- ' ){
			txt.value = '';
		}else{
			txt.select();
		};
};
function doblur( txt,target )
{
		if ( txt.value == '' )
		{
			txt.value = ' ----- Keyword ----- ';
		}
};
//-->
