I am so bad at this I'm embarrassed to Post it.
Thanks for any help you can give.
//The Below is the my PHP Code.
<?php
$strWhichPage = Request.QueryString("body")
if $strWhichPage = NULL or $strWhichPage = "" then $strWhichPage = "aboutUs.htm"
//The above is telling is trying to Identify the variable and it is in turn passed to the html link below.
intRowSize = 80 assume IE, change for netscape
set $oBc = Server.CreateObject("MSWC.BrowserType")
if $oBc.browser = "mozilla" OR $oBc.browser = "Default" then intRowSize = 79
$oBc.Close
set $oBc = Nothing
//The above is trying to Identify the browser and adjust a frameset accordingly.
?>
<head>
<title>Company X</title>
</head>
<frameset rows="<?php intRowSize ?>,,43" border=0 frameborder=0>
<frame name="TopFrame" src="topFrame.htm" marginwidth=0 marginheight=0 topmargin=0 leftmargin=0 scrolling=no>
<frameset cols=",13" border=0 frameborder=0>
<frame name="MainFrame" src="<?php strWhichPage ?>" marginwidth=0 marginheight=0 topmargin=0 leftmargin=0 scrolling=auto>
<frame name="RightFrame" src="rightFrame.htm" marginwidth=0 marginheight=0 topmargin=0 leftmargin=0 scrolling=no>
</frameset>
<frame name="MenuFrame" src="menu.htm" marginwidth=0 marginheight=0 topmargin=0 leftmargin=0 scrolling=no>
</frameset>
//The Below is the Original ASP Code.
<%@ Language=VBScript %>
<% on error resume next %>
<%
Dim strWhichPage
Dim intRowSize
Dim oBc
strWhichPage = Request.QueryString("body")
if strWhichPage = NULL or strWhichPage = "" then strWhichPage = "aboutUs.htm"
intRowSize = 80 'assume IE, change for netscape
set oBc = Server.CreateObject("MSWC.BrowserType")
if oBc.browser = "Netscape" OR oBc.browser = "Default" then intRowSize = 79
oBc.Close
set oBc = Nothing
%>
<head>
<title>Company X</title>
</head>
<frameset rows="<%= intRowSize %>,,43" border=0 frameborder=0>
<frame name="TopFrame" src="topFrame.htm" marginwidth=0 marginheight=0 topmargin=0 leftmargin=0 scrolling=no>
<frameset cols=",13" border=0 frameborder=0>
<frame name="MainFrame" src="<%= strWhichPage %>" marginwidth=0 marginheight=0 topmargin=0 leftmargin=0 scrolling=auto>
<frame name="RightFrame" src="rightFrame.htm" marginwidth=0 marginheight=0 topmargin=0 leftmargin=0 scrolling=no>
</frameset>
<frame name="MenuFrame" src="menu.htm" marginwidth=0 marginheight=0 topmargin=0 leftmargin=0 scrolling=no>
</frameset>