Here, I changed it so that $tehchoice is always set.
I also expanded the scope of the code being shown to help with the context. The PHP code is a backup, in case the user doesn't have javascript enabled, I've tested my javascripts, and they work fine, however, when I put this PHP code in nothing shows up at all.
<p><img src="<?php
$tehchoice = ""
if isSet($_GET['growth'])
$tehchoice = $_GET['growth'];
if ($tehchoice=="three")
echo "3by3.PNG";
elseif ($techchoice=="five")
echo "5by5.PNG";
else
echo "blank.bmp";
?>" align ="right" width="720" height="540" name="growthimg" id="growthimg">
<form action="expgrowth.php"
method="get">
<input type="radio" name="growth" value="three" onClick="three()"> 3 by 3 Growth
<br>
<input type="radio" name="growth" value="five" onClick="five()"> 5 by 5 Growth
<script type="text/javascript">
<!--
<input type="submit" value="View Growth"
//-->
</script>
</form></p>