' . $name .'';
						if ($action == 'tags')
						{
							$tags = array();
							$hastags = preg_match_all('/tags:(.*)/', $content, $tags, PREG_SET_ORDER);
							if ($hastags)
							{
								$tagslist = explode(',', $tags[0][1]);
								echo '
 ';
								foreach ($tagslist as $tag)
								{
									$tag = trim($tag);
									echo('' . $tag . ' ');
								}
								echo '';
							}
						}
						else if ($action == 'search')
						{
							$pos = strpos($content, $param);
							echo '
 ' . $param . '' . substr($content, $pos + strlen($param), 42) . '';
						}
						echo'
 ';
					}
				}
				echo '