Hello, I am wondering if an idea from oscommerce might be adopted for movable type. This function simply takes an entry title and splits it up into keywords text links that launch a search for the keyword. Is there anybody that can adopt this function for Movable Type?

<?php
$search_string_array = explode(" ",$product_info['products_name']);
foreach($search_string_array AS $search_entry) {
if(strlen($search_entry) > 3) {
$search_entry = ereg_replace("[^a-z0-9]", "", strtolower($search_entry));
$search_string .= '<a href="'.tep_href_link(FILENAME_ADVANCED_SEARCH_RESULT,'keywords='.$search_entry).'" title="'.$search_entry.' search">'.$search_entry.'</a>&nbsp;';
}
}
echo 'Related Product Quick Search: '.$search_string;
?>

Any help would be much appreciated. Thanks in advance.