This is the entire MasterPage:
<%@ Master Language="C#" AutoEventWireup="true" CodeBehind="MasterPage.master.cs"
Inherits="MasterPage" %>
<%@ Register assembly="Telerik.Web.UI" namespace="Telerik.Web.UI" tagprefix="telerik" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>ElectronicLane</title>
<link href="StyleSheet.css" rel="stylesheet" type="text/css" />
</head>
<body>
<form id="form1" runat="server">
<div>
<table>
<tr>
<td align="right" colspan="2">
<asp:LoginName ID="loginName1" runat="server" FormatString="Welcome {0} to our site."
Font-Italic="True" ForeColor="#3333FF" />
 
<asp:LoginStatus ID="LoginStatus1" runat="server" Font-Italic="True" LoginText="Authorized Dealer Login"
LogoutPageUrl="~/Default.aspx" />
</td>
</tr>
<tr>
<td class="firstColumn">
 <img alt="" src="Images/ElectronicLane.gif" />
</td>
<td align="center" class="secondColumn">
<table id="Table1" runat="server">
<tr>
<td>
<asp:Label ID="Label2" runat="server" Text="2709 Electronic Lane, Dallas, TX 75220"
Font-Bold="True" Font-Italic="True" ForeColor="Black" Height="20px" Width="387px"></asp:Label>
</td>
</tr>
<tr>
<td>
<asp:Label ID="Label3" runat="server" Text="Phone: 214-956-0555 FAX: 1-800-932-2960"
Font-Bold="True" Font-Italic="True" ForeColor="Black" Height="20px" Width="387px"></asp:Label>
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td>
</td>
<td>
<table width="100%">
<tr>
<td>
<telerik:RadMenu ID="RadMenu1" Runat="server" Flow="Horizontal" Skin="Inox">
<DefaultGroupSettings Flow="Vertical" ExpandDirection="Auto"></DefaultGroupSettings>
<CollapseAnimation Type="OutQuint" Duration="200"></CollapseAnimation>
<Items>
<telerik:RadMenuItem runat="server" ExpandMode="ClientSide"
NavigateUrl="Default.aspx" Text="Home">
<groupsettings expanddirection="Auto" flow="Vertical" />
</telerik:RadMenuItem>
<telerik:RadMenuItem runat="server" ExpandMode="ClientSide"
NavigateUrl="Products.aspx" Text="Products">
<groupsettings expanddirection="Auto" flow="Vertical" />
</telerik:RadMenuItem>
<telerik:RadMenuItem runat="server" ExpandMode="ClientSide"
NavigateUrl="NewsandEvents.aspx" Text="News and Events">
<groupsettings expanddirection="Auto" flow="Vertical" />
</telerik:RadMenuItem>
<telerik:RadMenuItem runat="server" ExpandMode="ClientSide"
NavigateUrl="AboutUs.aspx" Text="AboutUs">
<groupsettings expanddirection="Auto" flow="Vertical" />
</telerik:RadMenuItem>
<telerik:RadMenuItem runat="server" ExpandMode="ClientSide"
NavigateUrl="NewDealer.aspx" Text="New Dealer">
<groupsettings expanddirection="Auto" flow="Vertical" />
</telerik:RadMenuItem>
</Items>
<ExpandAnimation Type="OutQuart"></ExpandAnimation>
</telerik:RadMenu>
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td>
<table>
<tr>
<td>
<img alt="" src="Images/Edge.gif" /></td>
</tr>
<tr>
<td>
<img alt="" src="Images/Cedia.gif" /></td>
</tr>
</table>
</td>
<td class="secondColumn" style="vertical-align: top; border-top: olive thick solid;
border-left: olive thick solid; border-top-width: thick; border-left-width: thick;
border-left-color: olive; border-top-color: olive; border-right-width: thick;
border-right-color: olive;">
<asp:ContentPlaceHolder ID="ContentPlaceHolder1" runat="server">
</asp:ContentPlaceHolder>
</td>
</tr>
</table>
</div>
</form>
</body>
</html>