function FncWriteForm(type,size)
{
	document.writeln('<input type="text" name="searchstring" size="');
	if(document.all)
	{
		document.writeln('14');
	}else{
		document.writeln('7');
	}
	document.writeln('">');
}