This is what you wrote,
<b>
<frameset rows="31%,*,24%">
<frame src="Prototype_User_frame1.php?username=$Log_id" name="top" frameborder="0" scrolling="no">
.
.
.
</frameset>
</b>
And this is how I would do it.
Instead of setting it to be an html file, make it an php file, and this is how you code it.
<i><b>
$frame="<frameset rows=\"31%, * , 24%\">
<frame src=\"Prototype_User_frame1.php?username=$Log_id\" name=\"top\"
frameborder=0 scrolling=no>
</frameset>
";
</i></b>
Then you display the frame parsing it through PHP engine...
<i><b>
echo "$frame";
</i></b>
I think that this should solve your problem.
Di