STEP 1 : well change ure query to get the story type also
$query = "SELECT headline, author, story, timestamp,story_type FROM story WHERE id = '$id'";
im assuming its called story_type in your table, change it if its not
STEP 2 : modify the display code to include link
if ($row)
{
if($row->story_type==2){
// here display the link to the score
}
?>
<font class="bigText"><?php echo $row->headline; ?></font>
<br>
<font class="captionText"><?php echo $row->author; ?></font>
<br>
<font class="midText"><?php echo nl2br($row->story); ?></font>
<?php
}
.
.
.
.
.
reg
kevin