Here is the CSS file, followed by the complete code from the page that is calling the CSS file.
/*
project: RCSi ProjectTracker
author: Bill Sullivan
*/
*{
margin: 0;
padding: 0;
}*
body {
font: 12pt Arial, Helvetica, Sans-Serif;
color: #000000;
line-height: 1.0em;
background:#666666;
}
proposal-body {
font: 12pt Times New Roman, Times, serif;
color: #000000;
line-height: 1.0em;
}
a {
text-decoration: none;
color:#000000;
background: inherit;
}
a:hover {
color:#000000;
background: inherit;
}
a:focus {
outline: 0;
}
h1 {
font-size: 2.8em;
line-height: 35px;
}
proposal-h1 {
font: 16pt Times New Roman, Times, serif;
font-weight: bold;
color: #000000;
line-height: 35px;
}
h2 {
color: #000;
font: bold 170% Arial, Sans-Serif;
letter-spacing: -1px;
padding: 0;
margin: 0 0 10px;
}
proposal-h2 {
font: 14pt Times New Roman, Times, serif;
color: #000000;
line-height: 1.0em;
}
h3 {
color:#000000;
font: normal .9em Arial, Helvetica, Sans-Serif;
}
img {
border: 0;
}
.grey {
color: #484848;
}
.orange {
color: #ee6b23;
}
.emphasis {
color: #000000;
font-weight: bold;
font-size: 1.2em;
}
.text-emphasis {
font: Arial, Helvetica, Sans-Serif;
font-weight: bold;
}
.printfont {
color: #000000;
font-size: .9em;
}
#wrap {
width: 900px;
margin: 10px auto 0;
}
#logo {
float: left;
width: 400px;
margin: 0 0 7px;
}
#header_top {
background: url(../images/rcsi_logo.gif) no-repeat top right;
border-right: 2px solid #fff;
color: #454545;
padding: 10px 0 0 7px;
clear: both;
margin: 0 0 0px 0;
height: 84px;
}
#header_top p {
padding: 0;
margin: 0;
}
#header_top ul {
float: right;
padding: 12px 160px 0 0;
margin: 0 0 5px 0;
}
#header_top ul li {
list-style-type: none;
display: inline;
font-weight: bold;
}
#header_top ul li a {
padding-left: 7px;
background: #FFF url(../images/bullet.gif) no-repeat center left;
margin-right: 5px; color: #ee6b23;
}
#header_top ul li a:hover {
padding-left: 7px;
background: #FFF url(../images/bullet.gif) no-repeat center left;
margin-right: 5px; color: #808080;
}
#header_bottom {
background: #454545;
color: #EBEBEB;
padding: 20px 20px 20px 10px;
clear: both;
border-left: 2px solid #fff;
border-right: 2px solid #fff;
margin: 0 0 1px 0;
height: 90px;
}
#header_bottom h2 {
color: #F3F2BF;
width: 800px;
margin: 0 0 10px;
background: #454545;
}
#header_bottom ul {
font-family: Arial, Verdana;
font-size: 11px;
margin: 0;
padding: 0;
list-style: none;
}
#header_bottom ul li {
float: left;
}
#header_bottom li ul { display: none; }
#header_bottom ul li a {
display: block;
text-decoration: none;
color:#ffffff;
border-top: 1px solid #ee6b23;
padding: 2px 5px 2px 5px;
background: #475c89;
margin-left: 1px;
white-space: nowrap;
}
#header_bottom ul li a:hover { background:#999999; }
#header_bottom li:hover ul {
display: block;
position: absolute;
float: left;
}
#header_bottom li:hover li {
display:inline;
float: left;
font-size: 10px;
}
#header_bottom li:hover a { background: #999999; }
#header_bottom li:hover li a:hover { background: #999999; }
#slogan {
clear: left;
width: 730px;
border-top: 1px solid #eee;
margin: 0;
padding: 5px 0 0 0;
}
#maincontent {
padding: 20px 0;
clear: both;
}
#left {
float: left;
width: 630px;
margin-top: 0;
margin-right: 0;
margin-bottom: 25px;
margin-left: 0;
padding-top: 5px;
padding-right: 20px;
padding-bottom: 0;
padding-left: 5px;
}
#mainframe {
float: left;
width: 875px;
margin-top: 0;
margin-right: 0;
margin-bottom: 25px;
margin-left: 0;
padding-top: 5px;
padding-right: 20px;
padding-bottom: 0;
padding-left: 5px;
}
#left p {
margin: 0 0 15px;
}
#mainframe p {
margin: 0 0 15px;
}
#right {
width: 220px;
float: right;
}
#info {
border: 1px solid #ccc;
padding: 7px;
font-size: .9em;
background: #f4f4f4;
}
#loginform {
background: url(../images/searchform.gif) no-repeat;
padding: 8px 4px 10px 4px;
height: 50px;
font: bold 0.9em Arial, Sans-Serif;
margin: 0 0 20px;
}
#searchform p {
padding: 0;
margin: 0;
}
input.search {
width: 127px;
border: none;
background: url(../images/input.gif) no-repeat;
padding: 7px;
margin: 0 4px 0 5px;
}
input.submit {
width: 53px;
height: 29px;
border: none;
background: #FFF url(../images/submit.gif) no-repeat;
font: bold 1.2em Arial, Sans-Serif;
padding: 0px;
color: #FFF;
}
#footer {
clear: both;
padding: 10px;
margin: 10px 0 0 0;
border-top: 1px solid #ccc;
line-height: 2em;
}
<?PHP
session_start();
if (isset($_SESSION['Login']))
{
$Login = $_SESSION['Login'];
}
if (isset($_SESSION['Password']))
{
$Password = $_SESSION['Password'];
}
if (isset($_SESSION['ClientFile']))
{
$ClientFile = $_SESSION['ClientFile'];
}
$Time = $_SESSION['Time'];
$ThreeTabGroup = $_SESSION['ThreeTabGroup'];
$LowGroup = $_SESSION['LowGroup'];
$HighGroup = $_SESSION['HighGroup'];
$WindGroup = $_SESSION['WindGroup'];
$ShakeGroup = $_SESSION['ShakeGroup'];
$CT20yr3T = $_SESSION['CT20yr3T'];
$CT30yr3T = $_SESSION['CT30yr3T'];
$LM30Lam = $_SESSION['LM30Lam'];
$OC30Lam = $_SESSION['OC30Lam'];
$LMPlus = $_SESSION['LMPlus'];
$LMPrem = $_SESSION['LMPrem'];
$LMTL = $_SESSION['LMTL'];
$Pres = $_SESSION['Pres'];
$PresTL = $_SESSION['PresTL'];
$GEHD30 = $_SESSION['GEHD30'];
$GEHD40 = $_SESSION['GEHD40'];
$GEHDLife = $_SESSION['GEHDLife'];
$GS = $_SESSION['GS'];
$GC = $_SESSION['GC'];
$MedShake = $_SESSION['MedShake'];
$CCAMed = $_SESSION['CCAMed'];
$CCAHeavy = $_SESSION['CCAHeavy'];
$Valid = $_SESSION['Valid'];
$Terms = $_SESSION['Terms'];
$Line001a = $_POST['Line001a'];
$Line001 = $_POST['Line001'];
$Line002 = $_POST['Line002'];
$Line003 = $_POST['Line003'];
$Line004 = $_POST['Line004'];
$Line005 = $_POST['Line005'];
$Line006 = $_POST['Line006'];
$Line007 = $_POST['Line007'];
$Line008 = $_POST['Line008'];
$Line009 = $_POST['Line009'];
$Line010 = $_POST['Line010'];
$Line011 = $_POST['Line011'];
$Line012 = $_POST['Line012'];
$Line013 = $_POST['Line013'];
$Line014 = $_POST['Line014'];
$Line015 = $_POST['Line015'];
$Line016 = $_POST['Line016'];
$Line017 = $_POST['Line017'];
$Line018 = $_POST['Line018'];
$Line019 = $_POST['Line019'];
$Line019a = $_POST['Line019a'];
$Line019b = $_POST['Line019b'];
$Line019c = $_POST['Line019c'];
$Line019d = $_POST['Line019d'];
$Line020 = $_POST['Line020'];
$Line021 = $_POST['Line021'];
$Line022 = $_POST['Line022'];
$Line023 = $_POST['Line023'];
$Line024 = $_POST['Line024'];
$Line025 = $_POST['Line025'];
$Line026 = $_POST['Line026'];
$Line027 = $_POST['Line027'];
$Line028 = $_POST['Line028'];
$Line029 = $_POST['Line029'];
$Line030 = $_POST['Line030'];
$Line031 = $_POST['Line031'];
$Line032 = $_POST['Line032'];
$Line033 = $_POST['Line033'];
$Line034 = $_POST['Line034'];
$Line035 = $_POST['Line035'];
$Line036 = $_POST['Line036'];
$Line037 = $_POST['Line037'];
$Line038 = $_POST['Line038'];
$Line039 = $_POST['Line039'];
$Line040 = $_POST['Line040'];
$Line041 = $_POST['Line041'];
$Line042 = $_POST['Line042'];
$Line043 = $_POST['Line043'];
$Line044 = $_POST['Line044'];
$Line045 = $_POST['Line045'];
$Line046 = $_POST['Line046'];
$Line047 = $_POST['Line047'];
$Line048 = $_POST['Line048'];
$Line049 = $_POST['Line049'];
$Line050 = $_POST['Line050'];
$Line051 = $_POST['Line051'];
$Line052 = $_POST['Line052'];
$Line053 = $_POST['Line053'];
$Line054 = $_POST['Line054'];
$Line055 = $_POST['Line055'];
$Line056 = $_POST['Line056'];
$Line057 = $_POST['Line057'];
$Line058 = $_POST['Line058'];
$Line059 = $_POST['Line059'];
$Line060 = $_POST['Line060'];
$Line061 = $_POST['Line061'];
$Line062 = $_POST['Line062'];
$Line063 = $_POST['Line063'];
$Line064 = $_POST['Line064'];
$Line065 = $_POST['Line065'];
$Line066 = $_POST['Line066'];
include("brandy.inc");
$connection=mysql_connect($host,$user,$password)
or die ("couldn't connect to server");
$db = mysql_select_db($database,$connection)
or die ("couldn't select database");
$query01 = "UPDATE Proposals SET Line001a='$Line001a',
Line001='$Line001',
Line002='$Line002',
Line003='$Line003',
Line004='$Line004',
LIne005='$Line005',
Line006='$Line006',
Line007='$Line007',
Line008='$Line008',
Line009='$Line009',
Line010='$Line010',
Line011='$Line011',
Line012='$Line012',
Line013='$Line013',
Line014='$Line014',
LIne015='$Line015',
Line016='$Line016',
Line017='$Line017',
Line018='$Line018',
Line019='$Line019',
Line019a='$Line019a',
Line019b='$Line019b',
Line019c='$Line019c',
Line019d='$Line019d',
Line020='$Line020',
Line021='$Line021',
Line022='$Line022',
Line023='$Line023',
Line024='$Line024',
LIne025='$Line025',
Line026='$Line026',
Line027='$Line027',
Line028='$Line028',
Line029='$Line029',
Line030='$Line030',
Line031='$Line031',
Line032='$Line032',
Line033='$Line033',
Line034='$Line034',
LIne035='$Line035',
Line036='$Line036',
Line037='$Line037',
Line038='$Line038',
Line039='$Line039',
Line040='$Line040',
Line041='$Line041',
Line042='$Line042',
Line043='$Line043',
Line044='$Line044',
LIne045='$Line045',
Line046='$Line046',
Line047='$Line047',
Line048='$Line048',
Line049='$Line049',
Line050='$Line050',
Line051='$Line051',
Line052='$Line052',
Line053='$Line053',
Line054='$Line054',
LIne055='$Line055',
Line056='$Line056',
Line057='$Line057',
Line058='$Line058',
Line059='$Line059',
Line060='$Line060',
Line061='$Line061',
Line062='$Line062',
Line063='$Line063',
Line064='$Line064',
LIne065='$Line065',
Line066='$Line066' WHERE Time='$Time'";
$result01 = mysql_query($query01)
or die ('Query failed: ' . mysql_error());
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<link rel="stylesheet" href="css/printdoc.css" type="text/css" media="screen, projection, print" />
<title>RCSi ProjectTracker | Proposals</title>
</head>
<body>
<table width="900" border="0" align="center" cellpadding="2" bgcolor="#FFFFFF">
<tr>
<td colspan="7" bordercolor="#FFFFFF" bgcolor="#FFFFFF"><hr align="right" width="0" size="0"></td>
</tr>
<tr>
<td colspan="7" bordercolor="#FFFFFF" bgcolor="#FFFFFF">
<div align="center"><proposal-h1>North Creek Roofing, Inc.</proposal-h1><br />
<proposal-h2>17903 Bothell-Everett Hwy. #E-102, Bothell, WA 98012<br />
425-483-7986 or 425-822-6921; Fax: 425-487-6524</proposal-h2><br /><br /></div>
<proposal-body>Date:
<?PHP
$date = date('m/d/Y');
echo $date;
?><br /><br />
<?PHP
$query01 = "SELECT * FROM ClientInfo WHERE ClientFile = '$ClientFile'";
$result01 = mysql_query($query01)
or die('Query failed: ' . mysql_error());
$row01 = mysql_fetch_array($result01,MYSQL_ASSOC);
$ClientCompany = $row01['Company'];
if ($ClientCompany != "")
{
echo "Business Name: ".$ClientCompany."<br>";
}
?>
Customer Name: <?PHP echo $row01['FirstName']." ".$row01['LastName']; ?>
<br />
Customer Number: <?PHP echo $ClientFile; ?>
<br />
Customer Job Address: <?PHP echo $row01['ProjStreet1'].", ";
if ($row01['ProjStreet2'] == "")
{
echo $row01['Projcity']." ".$row01['ProjState']." ".$row01['ProjZip']."<br><br>";
}
else
{
echo $row01['ProjStreet2'].", ".$row01['Projcity']." ".$row01['ProjState']." ".$row01['ProjZip']."<br><br>";
}
?> </proposal-body> </td>
</tr>
<tr>
<td colspan="7" bordercolor="#FFFFFF" bgcolor="#FFFFFF">Cornerstone Roofing offers to furnish all materials and perform all labor as described below, subject to our Standard Terms and Conditions as set forth on the reverse side hereof:</td>
</tr>
<tr>
<td colspan="3" bordercolor="#FFFFFF" bgcolor="#FFFFFF"><span class="emphasis">Proposed Work:</span></td>
<td colspan="2" bordercolor="#FFFFFF" bgcolor="#FFFFFF"> </td>
<td width="115" bordercolor="#FFFFFF" bgcolor="#FFFFFF"> </td>
<td width="63" bordercolor="#FFFFFF" bgcolor="#FFFFFF"> </td>
</tr>
<tr>
<td width="77" bordercolor="#FFFFFF" bgcolor="#FFFFFF"> </td>
<td colspan="6" bordercolor="#FFFFFF" bgcolor="#FFFFFF">
<?PHP
$query04 = "SELECT * FROM Proposals WHERE Time = '$Time'";
$result04 = mysql_query($query04)
or die ('Query failed ' . mysql_error());
$row04 = mysql_fetch_array($result04,MYSQL_ASSOC);
$Bullet = 0;
echo "<table width='900' border='0' cellpadding='0'>";
if ($Line001a != "****Ignore Line****" and $Line001a != "-insert additional line-")
{
$Bullet++;
echo "<tr><td width='20'>";
echo "<strong>".$Bullet."</strong>. ";
echo "</td>";
echo "<td width='874'>";
echo $Line001a;
echo "</td>";
echo "</tr>";
}
if ($Line001 != "****Ignore Line****" and $Line001 != "-insert additional line-")
{
$Bullet++;
echo "<tr><td width='20'>";
echo "<strong>".$Bullet."</strong>. ";
echo "</td>";
echo "<td width='874'>";
echo $Line001;
echo "</td>";
echo "</tr>";
}
if ($Line002 != "****Ignore Line****" and $Line002 != "-insert additional line-")
{
$Bullet++;
echo "<tr><td width='20'>";
echo "<strong>".$Bullet."</strong>. ";
echo "</td>";
echo "<td width='874'>";
echo $Line002;
echo "</td>";
echo "</tr>";
}
if ($Line003 != "****Ignore Line****" and $Line003 != "-insert additional line-")
{
$Bullet++;
echo "<tr><td width='20'>";
echo "<strong>".$Bullet."</strong>. ";
echo "</td>";
echo "<td width='874'>";
echo $Line003;
echo "</td>";
echo "</tr>";
}
if ($Line004 != "****Ignore Line****" and $Line004 != "-insert additional line-")
{
$Bullet++;
echo "<tr><td width='20'>";
echo "<strong>".$Bullet."</strong>. ";
echo "</td>";
echo "<td width='874'>";
echo $Line004;
echo "</td>";
echo "</tr>";
}
if ($Line005 != "****Ignore Line****" and $Line005 != "-insert additional line-")
{
$Bullet++;
echo "<tr><td width='20'>";
echo "<strong>".$Bullet."</strong>. ";
echo "</td>";
echo "<td width='874'>";
echo $Line005;
echo "</td>";
echo "</tr>";
}
if ($Line006 != "****Ignore Line****" and $Line006 != "-insert additional line-")
{
$Bullet++;
echo "<tr><td width='20'>";
echo "<strong>".$Bullet."</strong>. ";
echo "</td>";
echo "<td width='874'>";
echo $Line006;
echo "</td>";
echo "</tr>";
}
if ($Line007 != "****Ignore Line****" and $Line007 != "-insert additional line-")
{
$Bullet++;
echo "<tr><td width='20'>";
echo "<strong>".$Bullet."</strong>. ";
echo "</td>";
echo "<td width='874'>";
echo $Line007;
echo "</td>";
echo "</tr>";
}
if ($Line008 != "****Ignore Line****" and $Line008 != "-insert additional line-")
{
$Bullet++;
echo "<tr><td width='20'>";
echo "<strong>".$Bullet."</strong>. ";
echo "</td>";
echo "<td width='874'>";
echo $Line008;
echo "</td>";
echo "</tr>";
}
if ($Line009 != "****Ignore Line****" and $Line009 != "-insert additional line-")
{
$Bullet++;
echo "<tr><td width='20'>";
echo "<strong>".$Bullet."</strong>. ";
echo "</td>";
echo "<td width='874'>";
echo $Line009;
echo "</td>";
echo "</tr>";
}
if ($Line010 != "****Ignore Line****" and $Line010 != "-insert additional line-")
{
$Bullet++;
echo "<tr><td width='20'>";
echo "<strong>".$Bullet."</strong>. ";
echo "</td>";
echo "<td width='874'>";
echo $Line010;
echo "</td>";
echo "</tr>";
}
if ($Line011 != "****Ignore Line****" and $Line011 != "-insert additional line-")
{
$Bullet++;
echo "<tr><td width='20'>";
echo "<strong>".$Bullet."</strong>. ";
echo "</td>";
echo "<td width='874'>";
echo $Line011;
echo "</td>";
echo "</tr>";
}
if ($Line012 != "****Ignore Line****" and $Line012 != "-insert additional line-")
{
$Bullet++;
echo "<tr><td width='20'>";
echo "<strong>".$Bullet."</strong>. ";
echo "</td>";
echo "<td width='874'>";
echo $Line012;
echo "</td>";
echo "</tr>";
}
if ($Line013 != "****Ignore Line****" and $Line013 != "-insert additional line-")
{
$Bullet++;
echo "<tr><td width='20'>";
echo "<strong>".$Bullet."</strong>. ";
echo "</td>";
echo "<td width='874'>";
echo $Line013;
echo "</td>";
echo "</tr>";
}
if ($Line014 != "****Ignore Line****" and $Line014 != "-insert additional line-")
{
$Bullet++;
echo "<tr><td width='20'>";
echo "<strong>".$Bullet."</strong>. ";
echo "</td>";
echo "<td width='874'>";
echo $Line014;
echo "</td>";
echo "</tr>";
}
if ($Line015 != "****Ignore Line****" and $Line015 != "-insert additional line-")
{
$Bullet++;
echo "<tr><td width='20'>";
echo "<strong>".$Bullet."</strong>. ";
echo "</td>";
echo "<td width='874'>";
echo $Line015;
echo "</td>";
echo "</tr>";
}
if ($Line016 != "****Ignore Line****" and $Line016 != "-insert additional line-")
{
$Bullet++;
echo "<tr><td width='20'>";
echo "<strong>".$Bullet."</strong>. ";
echo "</td>";
echo "<td width='874'>";
echo $Line016;
echo "</td>";
echo "</tr>";
}
if ($Line017 != "****Ignore Line****" and $Line017 != "-insert additional line-")
{
$Bullet++;
echo "<tr><td width='20'>";
echo "<strong>".$Bullet."</strong>. ";
echo "</td>";
echo "<td width='874'>";
echo $Line017;
echo "</td>";
echo "</tr>";
}
if ($Line018 != "****Ignore Line****" and $Line018 != "-insert additional line-")
{
$Bullet++;
echo "<tr><td width='20'>";
echo "<strong>".$Bullet."</strong>. ";
echo "</td>";
echo "<td width='874'>";
echo $Line018;
echo "</td>";
echo "</tr>";
}
if ($Line019 != "****Ignore Line****" and $Line019 != "-insert additional line-")
{
$Bullet++;
echo "<tr><td width='20'>";
echo "<strong>".$Bullet."</strong>. ";
echo "</td>";
echo "<td width='874'>";
echo $Line019;
echo "</td>";
echo "</tr>";
}
if ($Line028 != "****Ignore Line****" and $Line028 != "-insert additional line-")
{
$Bullet++;
echo "<tr><td width='20'>";
echo "<strong>".$Bullet."</strong>. ";
echo "</td>";
echo "<td width='874'>";
echo $Line028;
echo "</td>";
echo "</tr>";
}
if ($Line029 != "****Ignore Line****" and $Line029 != "-insert additional line-")
{
$Bullet++;
echo "<tr><td width='20'>";
echo "<strong>".$Bullet."</strong>. ";
echo "</td>";
echo "<td width='874'>";
echo $Line029;
echo "</td>";
echo "</tr>";
}
if ($Line019a != "****Ignore Line****" and $Line019a != "-insert additional line-")
{
$Bullet++;
echo "<tr><td width='20'>";
echo "<strong>".$Bullet."</strong>. ";
echo "</td>";
echo "<td width='874'>";
echo $Line019a;
echo "</td>";
echo "</tr>";
}
if ($Line019b != "****Ignore Line****" and $Line019b != "-insert additional line-")
{
$Bullet++;
echo "<tr><td width='20'>";
echo "<strong>".$Bullet."</strong>. ";
echo "</td>";
echo "<td width='874'>";
echo $Line019b;
echo "</td>";
echo "</tr>";
}
if ($Line019c != "****Ignore Line****" and $Line019c != "-insert additional line-")
{
$Bullet++;
echo "<tr><td width='20'>";
echo "<strong>".$Bullet."</strong>. ";
echo "</td>";
echo "<td width='874'>";
echo $Line019c;
echo "</td>";
echo "</tr>";
}
if ($Line019d != "****Ignore Line****" and $Line019d != "-insert additional line-")
{
$Bullet++;
echo "<tr><td width='20'>";
echo "<strong>".$Bullet."</strong>. ";
echo "</td>";
echo "<td width='874'>";
echo $Line019d;
echo "</td>";
echo "</tr>";
}
if ($Line020 != "****Ignore Line****" and $Line020 != "-insert additional line-")
{
$Bullet++;
echo "<tr><td width='20'>";
echo "<strong>".$Bullet."</strong>. ";
echo "</td>";
echo "<td width='874'>";
echo $Line020;
echo "</td>";
echo "</tr>";
}
if ($Line021 != "****Ignore Line****" and $Line021 != "-insert additional line-")
{
$Bullet++;
echo "<tr><td width='20'>";
echo "<strong>".$Bullet."</strong>. ";
echo "</td>";
echo "<td width='874'>";
echo $Line021;
echo "</td>";
echo "</tr>";
}
if ($Line022 != "****Ignore Line****" and $Line022 != "-insert additional line-")
{
$Bullet++;
echo "<tr><td width='20'>";
echo "<strong>".$Bullet."</strong>. ";
echo "</td>";
echo "<td width='874'>";
echo $Line022;
echo "</td>";
echo "</tr>";
}
if ($Line023 != "****Ignore Line****" and $Line023 != "-insert additional line-")
{
$Bullet++;
echo "<tr><td width='20'>";
echo "<strong>".$Bullet."</strong>. ";
echo "</td>";
echo "<td width='874'>";
echo $Line023;
echo "</td>";
echo "</tr>";
}
if ($Line024 != "****Ignore Line****" and $Line024 != "-insert additional line-")
{
$Bullet++;
echo "<tr><td width='20'>";
echo "<strong>".$Bullet."</strong>. ";
echo "</td>";
echo "<td width='874'>";
echo $Line024;
echo "</td>";
echo "</tr>";
}
if ($Line025 != "****Ignore Line****" and $Line025 != "-insert additional line-")
{
$Bullet++;
echo "<tr><td width='20'>";
echo "<strong>".$Bullet."</strong>. ";
echo "</td>";
echo "<td width='874'>";
echo $Line025;
echo "</td>";
echo "</tr>";
}
if ($Line026 != "****Ignore Line****" and $Line26 != "-insert additional line-")
{
$Bullet++;
echo "<tr><td width='20'>";
echo "<strong>".$Bullet."</strong>. ";
echo "</td>";
echo "<td width='874'>";
echo $Line026;
echo "</td>";
echo "</tr>";
}
if ($Line027 != "****Ignore Line****" and $Line027 != "-insert additional line-")
{
$Bullet++;
echo "<tr><td width='20'>";
echo "<strong>".$Bullet."</strong>. ";
echo "</td>";
echo "<td width='874'>";
echo $Line027;
echo "</td>";
echo "</tr>";
}
if ($Line030 != "****Ignore Line****" and $Line030 != "-insert additional line-")
{
$Bullet++;
echo "<tr><td width='20'>";
echo "<strong>".$Bullet."</strong>. ";
echo "</td>";
echo "<td width='874'>";
echo $Line030;
echo "</td>";
echo "</tr>";
}
if ($Line031 != "****Ignore Line****" and $Line031 != "-insert additional line-")
{
$Bullet++;
echo "<tr><td width='20'>";
echo "<strong>".$Bullet."</strong>. ";
echo "</td>";
echo "<td width='874'>";
echo $Line031;
echo "</td>";
echo "</tr>";
}
if ($Line032 != "****Ignore Line****" and $Line032 != "-insert additional line-")
{
$Bullet++;
echo "<tr><td width='20'>";
echo "<strong>".$Bullet."</strong>. ";
echo "</td>";
echo "<td width='874'>";
echo $Line032;
echo "</td>";
echo "</tr>";
}
if ($Line033 != "****Ignore Line****" and $Line033 != "-insert additional line-")
{
$Bullet++;
echo "<tr><td width='20'>";
echo "<strong>".$Bullet."</strong>. ";
echo "</td>";
echo "<td width='874'>";
echo $Line033;
echo "</td>";
echo "</tr>";
}
if ($Line034 != "****Ignore Line****" and $Line034 != "-insert additional line-")
{
$Bullet++;
echo "<tr><td width='20'>";
echo "<strong>".$Bullet."</strong>. ";
echo "</td>";
echo "<td width='874'>";
echo $Line034;
echo "</td>";
echo "</tr>";
}
if ($Line035 != "****Ignore Line****" and $Line035 != "-insert additional line-")
{
$Bullet++;
echo "<tr><td width='20'>";
echo "<strong>".$Bullet."</strong>. ";
echo "</td>";
echo "<td width='874'>";
echo $Line035;
echo "</td>";
echo "</tr>";
}
if ($Line036 != "****Ignore Line****" and $Line036 != "-insert additional line-")
{
$Bullet++;
echo "<tr><td width='20'>";
echo "<strong>".$Bullet."</strong>. ";
echo "</td>";
echo "<td width='874'>";
echo $Line036;
echo "</td>";
echo "</tr>";
}
if ($Line037 != "****Ignore Line****" and $Line037 != "-insert additional line-")
{
$Bullet++;
echo "<tr><td width='20'>";
echo "<strong>".$Bullet."</strong>. ";
echo "</td>";
echo "<td width='874'>";
echo $Line037;
echo "</td>";
echo "</tr>";
}
if ($Line038 != "****Ignore Line****" and $Line038 != "-insert additional line-")
{
$Bullet++;
echo "<tr><td width='20'>";
echo "<strong>".$Bullet."</strong>. ";
echo "</td>";
echo "<td width='874'>";
echo $Line038;
echo "</td>";
echo "</tr>";
}
if ($Line039 != "****Ignore Line****" and $Line039 != "-insert additional line-")
{
$Bullet++;
echo "<tr><td width='20'>";
echo "<strong>".$Bullet."</strong>. ";
echo "</td>";
echo "<td width='874'>";
echo $Line039;
echo "</td>";
echo "</tr>";
}
if ($Line040 != "****Ignore Line****" and $Line040 != "-insert additional line-")
{
$Bullet++;
echo "<tr><td width='20'>";
echo "<strong>".$Bullet."</strong>. ";
echo "</td>";
echo "<td width='874'>";
echo $Line040;
echo "</td>";
echo "</tr>";
}
if ($Line041 != "****Ignore Line****" and $Line041 != "-insert additional line-")
{
$Bullet++;
echo "<tr><td width='20'>";
echo "<strong>".$Bullet."</strong>. ";
echo "</td>";
echo "<td width='874'>";
echo $Line041;
echo "</td>";
echo "</tr>";
}
if ($Line042 != "****Ignore Line****" and $Line042 != "-insert additional line-")
{
$Bullet++;
echo "<tr><td width='20'>";
echo "<strong>".$Bullet."</strong>. ";
echo "</td>";
echo "<td width='874'>";
echo $Line042;
echo "</td>";
echo "</tr>";
}
if ($Line043 != "****Ignore Line****" and $Line043 != "-insert additional line-")
{
$Bullet++;
echo "<tr><td width='20'>";
echo "<strong>".$Bullet."</strong>. ";
echo "</td>";
echo "<td width='874'>";
echo $Line043;
echo "</td>";
echo "</tr>";
}
if ($Line044 != "****Ignore Line****" and $Line044 != "-insert additional line-")
{
$Bullet++;
echo "<tr><td width='20'>";
echo "<strong>".$Bullet."</strong>. ";
echo "</td>";
echo "<td width='874'>";
echo $Line044;
echo "</td>";
echo "</tr>";
}
if ($Line045 != "****Ignore Line****" and $Line045 != "-insert additional line-")
{
$Bullet++;
echo "<tr><td width='20'>";
echo "<strong>".$Bullet."</strong>. ";
echo "</td>";
echo "<td width='874'>";
echo $Line045;
echo "</td>";
echo "</tr>";
}
if ($Line046 != "****Ignore Line****" and $Line46 != "-insert additional line-")
{
$Bullet++;
echo "<tr><td width='20'>";
echo "<strong>".$Bullet."</strong>. ";
echo "</td>";
echo "<td width='874'>";
echo $Line046;
echo "</td>";
echo "</tr>";
}
if ($Line047 != "****Ignore Line****" and $Line047 != "-insert additional line-")
{
$Bullet++;
echo "<tr><td width='20'>";
echo "<strong>".$Bullet."</strong>. ";
echo "</td>";
echo "<td width='874'>";
echo $Line047;
echo "</td>";
echo "</tr>";
}
if ($Line048 != "****Ignore Line****" and $Line048 != "-insert additional line-")
{
$Bullet++;
echo "<tr><td width='20'>";
echo "<strong>".$Bullet."</strong>. ";
echo "</td>";
echo "<td width='874'>";
echo $Line048;
echo "</td>";
echo "</tr>";
}
if ($Line049 != "****Ignore Line****" and $Line049 != "-insert additional line-")
{
$Bullet++;
echo "<tr><td width='20'>";
echo "<strong>".$Bullet."</strong>. ";
echo "</td>";
echo "<td width='874'>";
echo $Line049;
echo "</td>";
echo "</tr>";
}
if ($Line050 != "****Ignore Line****" and $Line050 != "-insert additional line-")
{
$Bullet++;
echo "<tr><td width='20'>";
echo "<strong>".$Bullet."</strong>. ";
echo "</td>";
echo "<td width='874'>";
echo $Line050;
echo "</td>";
echo "</tr>";
}
if ($Line051 != "****Ignore Line****" and $Line051 != "-insert additional line-")
{
$Bullet++;
echo "<tr><td width='20'>";
echo "<strong>".$Bullet."</strong>. ";
echo "</td>";
echo "<td width='874'>";
echo $Line051;
echo "</td>";
echo "</tr>";
}
if ($Line052 != "****Ignore Line****" and $Line052 != "-insert additional line-")
{
$Bullet++;
echo "<tr><td width='20'>";
echo "<strong>".$Bullet."</strong>. ";
echo "</td>";
echo "<td width='874'>";
echo $Line052;
echo "</td>";
echo "</tr>";
}
if ($Line053 != "****Ignore Line****" and $Line053 != "-insert additional line-")
{
$Bullet++;
echo "<tr><td width='20'>";
echo "<strong>".$Bullet."</strong>. ";
echo "</td>";
echo "<td width='874'>";
echo $Line053;
echo "</td>";
echo "</tr>";
}
if ($Line054 != "****Ignore Line****" and $Line054 != "-insert additional line-")
{
$Bullet++;
echo "<tr><td width='20'>";
echo "<strong>".$Bullet."</strong>. ";
echo "</td>";
echo "<td width='874'>";
echo $Line054;
echo "</td>";
echo "</tr>";
}
if ($Line055 != "****Ignore Line****" and $Line055 != "-insert additional line-")
{
$Bullet++;
echo "<tr><td width='20'>";
echo "<strong>".$Bullet."</strong>. ";
echo "</td>";
echo "<td width='874'>";
echo $Line055;
echo "</td>";
echo "</tr>";
}
if ($Line056 != "****Ignore Line****" and $Line056 != "-insert additional line-")
{
$Bullet++;
echo "<tr><td width='20'>";
echo "<strong>".$Bullet."</strong>. ";
echo "</td>";
echo "<td width='874'>";
echo $Line056;
echo "</td>";
echo "</tr>";
}
if ($Line057 != "****Ignore Line****" and $Line057 != "-insert additional line-")
{
$Bullet++;
echo "<tr><td width='20'>";
echo "<strong>".$Bullet."</strong>. ";
echo "</td>";
echo "<td width='874'>";
echo $Line057;
echo "</td>";
echo "</tr>";
}
if ($Line058 != "****Ignore Line****" and $Line058 != "-insert additional line-")
{
$Bullet++;
echo "<tr><td width='20'>";
echo "<strong>".$Bullet."</strong>. ";
echo "</td>";
echo "<td width='874'>";
echo $Line058;
echo "</td>";
echo "</tr>";
}
if ($Line059 != "****Ignore Line****" and $Line059 != "-insert additional line-")
{
$Bullet++;
echo "<tr><td width='20'>";
echo "<strong>".$Bullet."</strong>. ";
echo "</td>";
echo "<td width='874'>";
echo $Line059;
echo "</td>";
echo "</tr>";
}
if ($Line060 != "****Ignore Line****" and $Line060 != "-insert additional line-")
{
$Bullet++;
echo "<tr><td width='20'>";
echo "<strong>".$Bullet."</strong>. ";
echo "</td>";
echo "<td width='874'>";
echo $Line060;
echo "</td>";
echo "</tr>";
}
if ($Line061 != "****Ignore Line****" and $Line061 != "-insert additional line-")
{
$Bullet++;
echo "<tr><td width='20'>";
echo "<strong>".$Bullet."</strong>. ";
echo "</td>";
echo "<td width='874'>";
echo $Line061;
echo "</td>";
echo "</tr>";
}
if ($Line062 != "****Ignore Line****" and $Line062 != "-insert additional line-")
{
$Bullet++;
echo "<tr><td width='20'>";
echo "<strong>".$Bullet."</strong>. ";
echo "</td>";
echo "<td width='874'>";
echo $Line062;
echo "</td>";
echo "</tr>";
}
$query05 = "SELECT Total_20yr3T from Estimate_20yr3T WHERE ClientFile = '$ClientFile'";
$result05 = mysql_query($query05)
or die ("Information Not Available from Estimate_20yr3T Table");
$row05 = mysql_fetch_array($result05,MYSQL_ASSOC);
$Total_20yr3T = $row05['Total_20yr3T'];
$query06 = "SELECT Total_30yr3T from Estimate_30yr3T WHERE ClientFile = '$ClientFile'";
$result06 = mysql_query($query06)
or die ("Information Not Available from Estimate_30yr3T Table");
$row06 = mysql_fetch_array($result06,MYSQL_ASSOC);
$Total_30yr3T = $row06['Total_30yr3T'];
$query07 = "SELECT Total_LM30Lam from Estimate_LM30Lam WHERE ClientFile = '$ClientFile'";
$result07 = mysql_query($query07)
or die ("Information Not Available from Estimate_LM30Lam Table");
$row07 = mysql_fetch_array($result07,MYSQL_ASSOC);
$Total_LM30Lam = $row07['Total_LM30Lam'];
$query07a = "SELECT Total_OC30Lam from Estimate_OC30Lam WHERE ClientFile = '$ClientFile'";
$result07a = mysql_query($query07a)
or die ("Information Not Available from Estimate_OC30Lam Table");
$row07a = mysql_fetch_array($result07a,MYSQL_ASSOC);
$Total_OC30Lam = $row07a['Total_OC30Lam'];
$query08 = "SELECT Total_LMPlus from Estimate_LMPlus WHERE ClientFile = '$ClientFile'";
$result08 = mysql_query($query08)
or die ("Information Not Available from Estimate_LMPlus Table");
$row08 = mysql_fetch_array($result08,MYSQL_ASSOC);
$Total_LMPlus = $row08['Total_LMPlus'];
$query09 = "SELECT Total_LMPrem from Estimate_LMPrem WHERE ClientFile = '$ClientFile'";
$result09 = mysql_query($query09)
or die ("Information Not Available from Estimate_LMPrem Table");
$row09 = mysql_fetch_array($result09,MYSQL_ASSOC);
$Total_LMPrem = $row09['Total_LMPrem'];
$query10 = "SELECT Total_LMTL from Estimate_LMTL WHERE ClientFile = '$ClientFile'";
$result10 = mysql_query($query10)
or die ("Information Not Available from Estimate_LMTL Table");
$row10 = mysql_fetch_array($result10,MYSQL_ASSOC);
$Total_LMTL = $row10['Total_LMTL'];
$query11 = "SELECT Total_GEHD30 from Estimate_GEHD30 WHERE ClientFile = '$ClientFile'";
$result11 = mysql_query($query11)
or die ("Information Not Available from Estimate_GEHD30 Table");
$row11 = mysql_fetch_array($result11,MYSQL_ASSOC);
$Total_GEHD30 = $row11['Total_GEHD30'];
$query12 = "SELECT Total_GEHD40 from Estimate_GEHD40 WHERE ClientFile = '$ClientFile'";
$result12 = mysql_query($query12)
or die ("Information Not Available from Estimate_GEHD40 Table");
$row12 = mysql_fetch_array($result12,MYSQL_ASSOC);
$Total_GEHD40 = $row12['Total_GEHD40'];
$query12a = "SELECT Total_GEHDLife from Estimate_GEHDLife WHERE ClientFile = '$ClientFile'";
$result12a = mysql_query($query12a)
or die ("Information Not Available from Estimate_GEHDLife Table");
$row12a = mysql_fetch_array($result12a,MYSQL_ASSOC);
$Total_GEHDLife = $row12a['Total_GEHDLife'];
$query12b = "SELECT Total_GS from Estimate_GS WHERE ClientFile = '$ClientFile'";
$result12b = mysql_query($query12b)
or die ("Information Not Available from Estimate_GS Table");
$row12b = mysql_fetch_array($result12b,MYSQL_ASSOC);
$Total_GS = $row12b['Total_GS'];
$query12c = "SELECT * from Estimate_GC WHERE ClientFile = '$ClientFile'";
$result12c = mysql_query($query12c)
or die ("Information Not Available from Estimate_GC Table");
$row12c = mysql_fetch_array($result12c,MYSQL_ASSOC);
$Total_GC = $row12c['Total_GC'];
$FourStar = $row12c['FourStar'];
$query12d = "SELECT Total_MedShake from Estimate_MedShake WHERE ClientFile = '$ClientFile'";
$result12d = mysql_query($query12d)
or die ("Information Not Available from Estimate_MedShake Table");
$row12d = mysql_fetch_array($result12d,MYSQL_ASSOC);
$Total_MedShake = $row12d['Total_MedShake'];
$query12e = "SELECT Total_CCAMed from Estimate_CCAMed WHERE ClientFile = '$ClientFile'";
$result12e = mysql_query($query12e)
or die ("Information Not Available from Estimate_CCAMed Table");
$row12e = mysql_fetch_array($result12e,MYSQL_ASSOC);
$Total_CCAMed = $row12e['Total_CCAMed'];
$query12f = "SELECT Total_CCAHeavy from Estimate_CCAHeavy WHERE ClientFile = '$ClientFile'";
$result12f = mysql_query($query12f)
or die ("Information Not Available from Estimate_CCAHeavy Table");
$row12f = mysql_fetch_array($result12f,MYSQL_ASSOC);
$Total_CCAHeavy = $row12f['Total_CCAHeavy'];
$query13 = "SELECT Total_Pres from Estimate_Pres WHERE ClientFile = '$ClientFile'";
$result13 = mysql_query($query13)
or die ("Information Not Available from Estimate_Pres Table");
$row13 = mysql_fetch_array($result13,MYSQL_ASSOC);
$Total_Pres = $row13['Total_Pres'];
$query14 = "SELECT * from Estimate_PresTL WHERE ClientFile = '$ClientFile'";
$result14 = mysql_query($query14)
or die ("Information Not Available from Estimate_PresTL Table");
$row14 = mysql_fetch_array($result14,MYSQL_ASSOC);
$Total_PresTL = $row14['Total_PresTL'];
$FiveStar = $row14['FiveStar'];
$f_Total_20yr3T = number_format($Total_20yr3T,2);
$f_Total_30yr3T = number_format($Total_30yr3T,2);
$f_Total_LM30Lam = number_format($Total_LM30Lam,2);
$f_Total_OC30Lam = number_format($Total_OC30Lam,2);
$f_Total_LMPlus = number_format($Total_LMPlus,2);
$f_Total_LMPrem = number_format($Total_LMPrem,2);
$f_Total_LMTL = number_format($Total_LMTL,2);
$f_Total_Pres = number_format($Total_Pres,2);
$f_Total_PresTL = number_format($Total_PresTL,2);
$f_Total_GEHD30 = number_format($Total_GEHD30,2);
$f_Total_GEHD40 = number_format($Total_GEHD40,2);
$f_Total_GEHDLife = number_format($Total_GEHDLife,2);
$f_Total_GS = number_format($Total_GS,2);
$f_Total_GC = number_format($Total_GC,2);
$f_Total_MedShake = number_format($Total_MedShake,2);
$f_Total_CCAMed = number_format($Total_CCAMed,2);
$f_Total_CCAHeavy = number_format($Total_CCAHeavy,2);
if (($Line063 != "****Ignore Line****" and $Line063 != "-insert additional line-") or
($Line064 != "****Ignore Line****" and $Line064 != "-insert additional line-") or
($Line065 != "****Ignore Line****" and $Line065 != "-insert additional line-") or
($Line063 != "****Ignore Line****" and $Line063 != "-insert additional line-"))
{
echo "<tr><td colspan='2'>";
echo "<span class='emphasis'>Options:</span>";
echo "</td>";
echo "</tr>";
$Bullet = 0;
if ($Line063 != "****Ignore Line****" and $Line063 != "-insert additional line-")
{
$Bullet++;
echo "<tr><td width='20'>";
echo "<strong>".$Bullet."</strong>. ";
echo "</td>";
echo "<td width='874'>";
echo $Line063;
echo "</td>";
echo "</tr>";
}
if ($Line064 != "****Ignore Line****" and $Line064 != "-insert additional line-")
{
$Bullet++;
echo "<tr><td width='20'>";
echo "<strong>".$Bullet."</strong>. ";
echo "</td>";
echo "<td width='874'>";
echo $Line064;
echo "</td>";
echo "</tr>";
}
if ($Line065 != "****Ignore Line****" and $Line065 != "-insert additional line-")
{
$Bullet++;
echo "<tr><td width='20'>";
echo "<strong>".$Bullet."</strong>. ";
echo "</td>";
echo "<td width='874'>";
echo $Line065;
echo "</td>";
echo "</tr>";
}
if ($Line066 != "****Ignore Line****" and $Line66 != "-insert additional line-")
{
$Bullet++;
echo "<tr><td width='20'>";
echo "<strong>".$Bullet."</strong>. ";
echo "</td>";
echo "<td width='874'>";
echo $Line066;
echo "</td>";
echo "</tr>";
}
echo "</table>";
}
else
{
echo "</table>";
}
?> </td>
</tr>
<tr>
<td bordercolor="#FFFFFF" bgcolor="#FFFFFF"> </td>
<td colspan="6" bordercolor="#FFFFFF" bgcolor="#FFFFFF">
<?PHP
if ($Line061 == "Workmanship guaranteed 10 years (assumes no responsibility for the sub-roofing for the duration
of the warranty period).")
{
echo "This estimate assumes the following to be done by others prior to our roofing: 1) All framing and sheathing. 2) All applicable
protrusions (chimney(s), plumbing, fan(s), and HVAC vents to be cut through roof with pipe boots and vent caps left onsite. 3) Any applicable skylight
openings to be cut and curbs built and installed. 4) Bid is subject to change based on actual field measurements (estimate based on plans), 5) Bid is
based on being able to access the structure with roofing delivery truck.";
}
?>
</td>
</tr>
<tr>
<td colspan="7" bordercolor="#FFFFFF" bgcolor="#FFFFFF"><span class="emphasis">Cost Estimates</span> (note: prices do not include sales tax or any required permit fees)</td>
</tr>
<tr>
<td bordercolor="#FFFFFF" bgcolor="#FFFFFF"> </td>
<td colspan="6" bordercolor="#FFFFFF" bgcolor="#FFFFFF">
<?PHP
if ($ThreeTabGroup == "Select")
{
echo "- Cost for CertainTeed 20 year 3-Tab Shingles = <b>$".$f_Total_20yr3T."</b><br>";
echo "- Cost for CertainTeed 30 year 3-Tab Shingles = <b>$".$f_Total_30yr3T."</b>";
}
if ($LowGroup == "Select")
{
echo "<span class='text-emphasis'>30-Year Laminates</span><br>";
echo "- Cost for Owens-Corning Pro-30 Oakridge Laminate Shingles = <b>$".$f_Total_OC30Lam."</b><br>";
echo "- Cost for GAF/Elk HD 30-year Laminate Shingles = <b>$".$f_Total_GEHD30."</b><br>";
echo "- Cost for CertainTeed Landmark 30-year Laminate Shingles = <b>$".$f_Total_LM30Lam."</b><br>";
echo "<span class='text-emphasis'>40-Year Laminates</span><br>";
echo "- Cost for GAF/Elk HD 40-year Laminate Shingles = <b>$".$f_Total_GEHD40."</b><br>";
echo "- Cost for CertainTeed Landmark Plus 40-year Laminate Shingles = <b>$".$f_Total_LMPlus."</b><br>";
echo "<span class='text-emphasis'>\"Lifetime\" Laminates</span><br>";
echo "- Cost for GAF/Elk HD Lifetime Laminate Shingles = <b>$".$f_Total_GEHDLife."</b><br>";
echo "- Cost for CertainTeed Landmark Premium Lifetime Shingles = <b>$".$f_Total_LMPrem."</b><br>";
}
if ($HighGroup == "Select")
{
echo "- Cost for GAF/Elk Grand Sequoia Laminate Shingles = <b>$".$f_Total_GS."</b><br>";
echo "- Cost for GAF/Elk Grand Canyon Laminate Shingles = <b>$".$f_Total_GC."</b><br>";
echo "- Cost for CertainTeed Landmark Tri-Lam (TL) Lifetime Shingles = <b>$".$f_Total_LMTL."</b><br>";
echo "- Cost for CertainTeed Presidential Lifetime Shingles = <b>$".$f_Total_Pres."</b><br>";
echo "- Cost for CertainTeed Presidential Tri-Lam (TL) Lifetime Shingles = <b>$".$f_Total_PresTL."</b><br>";
}
if ($ShakeGroup == "Select")
{
echo "- Cost for Medium Untreated Cedar Shakes = <b>$".$f_Total_MedShake."</b><br>";
echo "- Cost for Medium CCA Treated Cedar Shakes = <b>$".$f_Total_CCAMed."</b><br>";
echo "- Cost for Heavy CCA Treated Cedar Shakes = <b>$".$f_Total_CCAHeavy."</b>";
}
if ($CT20yr3T == "Select")
{
echo "- Cost for CertainTeed 20-year 3-Tab Shingles = <b>$".$f_Total_20yr3T."</b><br>";
}
if ($CT30yr3T == "Select")
{
echo "- Cost for CertainTeed 30-year 3-Tab Shingles = <b>$".$f_Total_30yr3T."</b><br>";
}
if ($LM30Lam == "Select")
{
echo "- Cost for CertainTeed Landmark 30-year Laminate Shingles = <b>$".$f_Total_LM30Lam."</b><br>";
}
if ($OC30Lam == "Select")
{
echo "- Cost for Owens-Corning Pro-30 Oakridge Laminate Shingles = <b>$".$f_Total_OC30Lam."</b><br>";
}
if ($LMPlus == "Select")
{
echo "<span class='text-emphasis'>- Cost for CertainTeed Landmark Plus 40-year Laminate Shingles = <b>$".$f_Total_LMPlus."</b><br>";
}
if ($LMPrem == "Select")
{
echo "- Cost for CertainTeed Landmark Premium Lifetime Laminate Shingles = <b>$".$f_Total_LMPrem."</b><br>";
}
if ($LMTL == "Select")
{
echo "- Cost for CertainTeed Landmark Tri-Lam (TL) Lifetime Laminate Shingles = <b>$".$f_Total_LMTL."</b><br>";
}
if ($Pres == "Select")
{
echo "- Cost for CertainTeed Presidential Lifetime Laminate Shingles = <b>$".$f_Total_Pres."</b><br>";
}
if ($PresTL == "Select")
{
echo "- Cost for CertainTeed Presidential Tri-Lam (TL) Lifetime Laminate Shingles = <b>$".$f_Total_PresTL."</b><br>";
}
if ($GEHD30 == "Select")
{
echo "- Cost for GAF/Elk HD 30-year Laminate Shingles = <b>$".$f_Total_GEHD30."</b><br>";
}
if ($GEHD40 == "Select")
{
echo "- Cost for GAF/Elk HD 40-year Laminate Shingles = <b>$".$f_Total_GEHD40."</b><br>";
}
if ($GEHDLife == "Select")
{
echo "- Cost for GAF/Elk HD Lifetime Laminate Shingles = <b>$".$f_Total_GEHDLife."</b><br>";
}
if ($GS == "Select")
{
echo "- Cost for GAF/Elk Grand Sequoia Laminate Shingles = <b>$".$f_Total_GS."</b><br>";
}
if ($GC == "Select")
{
echo "- Cost for GAF/Elk Grand Canyon Laminate Shingles = <b>$".$f_Total_GC."</b><br>";
}
if ($MedShake == "Select")
{
echo "- Cost for Medium Untreated Cedar Shakes = <b>$".$f_Total_MedShake."</b><br>";
}
if ($CCAMed == "Select")
{
echo "- Cost for Medium CCA Treated Cedar Shakes = <b>$".$f_Total_CCAMed."</b><br>";
}
if ($CCAHeavy == "Select")
{
echo "<span class='style6'>- Cost for Heavy CCA Treated Cedar Shakes = <b>$".$f_Total_CCAHeavy."</b><br>";
}
if ($HighGroup == "Select" or $LowGroup == "Select" or $LMPrem == "Select" or $LMTL == "Select" or
$Pres == "Select" or $PresTL == "Select" or $GS == "Select" or $GC == "Select")
{
if ($HighGroup == "Select" or $LowGroup == "Select")
{
echo "<br><br>Extended warranty available on these products.
Cost dependent upon selection.";
}
if ($LMPrem == "Select" or $LMTL == "Select" or $Pres == "Select" or $PresTL == "Select")
{
echo "<br><br>CertainTeed Five Star extended warranty available as an option. Cost = $".$FiveStar.".
Cornerstone's Workmanship Warranty extended to 20-years if this option is chosen.
Cornerstone Roofing employees hold advanced credentials from CertainTeed.";
}
if ($GS == "Select" or $GC == "Select")
{
echo "<br><br>GAF/Elk System Plus Warranty available. Cost = $".$FourStar."";
}
}
?>
</td>
</tr>
<tr>
<td colspan="7" bordercolor="#FFFFFF" bgcolor="#FFFFFF"><hr></td>
</tr>
<tr>
<td colspan="7" bordercolor="#FFFFFF" bgcolor="#FFFFFF">
<div align="left"><span class="style6">Job Location:</span>
<?PHP
if ($ProjStreet2 == "")
{
echo "<span class='text-emphasis'>".$ProjStreet1.", ".$Projcity.", ".$ProjState." ".$ProjZip."</span>";
}
else
{
echo "<span class='text-emphasis'>".$ProjStreet1.", ".$ProjStreet2.", ".$Projcity.", ".$ProjSate." ".$ProjZip."</span>";
}
?>
</div>
</div></td>
</tr>
<tr>
<td colspan="7" bordercolor="#FFFFFF" bgcolor="#FFFFFF">The forgoing proposal is subject to our Standard Terms and Conditions on the reverse side hereof, and is expressly conditioned upon the following: Work to be completed in a substantial and professional manner for the sum described in the 'Cost Estimates' section above, plus any options selected by the Client as described in the 'Options' section above.</td>
</tr>
<tr>
<td colspan="7" bordercolor="#FFFFFF" bgcolor="#FFFFFF">Any alterations or deviations from the work described above will be performed only upon direction of the Customer, and the Customer agrees to pay Cornerstone's standard charges for such work.</td>
</tr>
<tr>
<td colspan="7" bordercolor="#FFFFFF" bgcolor="#FFFFFF">Payment terms:
<?PHP
echo "<span class='text-emphasis'> ".$Terms."</span>";
?> </td>
</tr>
<tr>
<td colspan="7" bordercolor="#FFFFFF" bgcolor="#FFFFFF">This proposal is good for
<?PHP
echo "<span class='text-emphasis'> ".$Valid."</span>";
?>
, and shall automatically lapse if not accepted in writing by the Customer by that date.</td>
</tr>
<tr>
<td bordercolor="#FFFFFF" bgcolor="#FFFFFF"> </td>
<td width="256" bordercolor="#FFFFFF" bgcolor="#FFFFFF"> </td>
<td width="115" bordercolor="#FFFFFF" bgcolor="#FFFFFF"> </td>
<td width="115" bordercolor="#FFFFFF" bgcolor="#FFFFFF"> </td>
<td width="115" bordercolor="#FFFFFF" bgcolor="#FFFFFF"> </td>
<td bordercolor="#FFFFFF" bgcolor="#FFFFFF"> </td>
<td bordercolor="#FFFFFF" bgcolor="#FFFFFF"> </td>
</tr>
<tr>
<td colspan="7" bordercolor="#FFFFFF" bgcolor="#FFFFFF"><div align="left">By:
_______________________________________, Cornerstone Roofing, Inc.</div></td>
</tr>
</table>
</body>
</html>
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: 48: 49: 50: 51: 52: 53: 54: 55: 56: 57: 58: 59: 60: 61: 62: 63: 64: 65: 66: 67: 68: 69: 70: 71: 72: 73: 74: 75: 76: 77: 78: 79: 80: 81: 82: 83: 84: 85: 86: 87: 88: 89: 90: 91: 92: 93: 94: 95: 96: 97: 98: 99: 100: 101: 102: 103: 104: 105: 106: 107: 108: 109: 110: 111: 112: 113: 114: 115: 116: 117: 118: 119: 120: 121: 122: 123: 124: 125: 126: 127: 128: 129: 130: 131: 132: 133: 134: 135: 136: 137: 138: 139: 140: 141: 142: 143: 144: 145: 146: 147: 148: 149: 150: 151: 152: 153: 154: 155: 156: 157: 158: 159: 160: 161: 162: 163: 164: 165: 166: 167: 168: 169: 170: 171: 172: 173: 174: 175: 176: 177: 178: 179: 180: 181: 182: 183: 184: 185: 186: 187: 188: 189: 190: 191: 192: 193: 194: 195: 196: 197: 198: 199: 200: 201: 202: 203: 204: 205: 206: 207: 208: 209: 210: 211: 212: 213: 214: 215: 216: 217: 218: 219: 220: 221: 222: 223: 224: 225: 226: 227: 228: 229: 230: 231: 232: 233: 234: 235: 236: 237: 238: 239: 240: 241: 242: 243: 244: 245: 246: 247: 248: 249: 250: 251: 252: 253: 254: 255: 256: 257: 258: 259: 260: 261: 262: 263: 264: 265: 266: 267: 268: 269: 270: 271: 272: 273: 274: 275: 276: 277: 278: 279: 280: 281: 282: 283: 284: 285: 286: 287: 288: 289: 290: 291: 292: 293: 294: 295: 296: 297: 298: 299: 300: 301: 302: 303: 304: 305: 306: 307: 308: 309: 310: 311: 312: 313: 314: 315: 316: 317: 318: 319: 320: 321: 322: 323: 324: 325: 326: 327: 328: 329: 330: 331: 332: 333: 334: 335: 336: 337: 338: 339: 340: 341: 342: 343: 344: 345: 346: 347: 348: 349: 350: 351: 352: 353: 354: 355: 356: 357: 358: 359: 360: 361: 362: 363: 364: 365: 366: 367: 368: 369: 370: 371: 372: 373: 374: 375: 376: 377: 378: 379: 380: 381: 382: 383: 384: 385: 386: 387: 388: 389: 390: 391: 392: 393: 394: 395: 396: 397: 398: 399: 400: 401: 402: 403: 404: 405: 406: 407: 408: 409: 410: 411: 412: 413: 414: 415: 416: 417: 418: 419: 420: 421: 422: 423: 424: 425: 426: 427: 428: 429: 430: 431: 432: 433: 434: 435: 436: 437: 438: 439: 440: 441: 442: 443: 444: 445: 446: 447: 448: 449: 450: 451: 452: 453: 454: 455: 456: 457: 458: 459: 460: 461: 462: 463: 464: 465: 466: 467: 468: 469: 470: 471: 472: 473: 474: 475: 476: 477: 478: 479: 480: 481: 482: 483: 484: 485: 486: 487: 488: 489: 490: 491: 492: 493: 494: 495: 496: 497: 498: 499: 500: 501: 502: 503: 504: 505: 506: 507: 508: 509: 510: 511: 512: 513: 514: 515: 516: 517: 518: 519: 520: 521: 522: 523: 524: 525: 526: 527: 528: 529: 530: 531: 532: 533: 534: 535: 536: 537: 538: 539: 540: 541: 542: 543: 544: 545: 546: 547: 548: 549: 550: 551: 552: 553: 554: 555: 556: 557: 558: 559: 560: 561: 562: 563: 564: 565: 566: 567: 568: 569: 570: 571: 572: 573: 574: 575: 576: 577: 578: 579: 580: 581: 582: 583: 584: 585: 586: 587: 588: 589: 590: 591: 592: 593: 594: 595: 596: 597: 598: 599: 600: 601: 602: 603: 604: 605: 606: 607: 608: 609: 610: 611: 612: 613: 614: 615: 616: 617: 618: 619: 620: 621: 622: 623: 624: 625: 626: 627: 628: 629: 630: 631: 632: 633: 634: 635: 636: 637: 638: 639: 640: 641: 642: 643: 644: 645: 646: 647: 648: 649: 650: 651: 652: 653: 654: 655: 656: 657: 658: 659: 660: 661: 662: 663: 664: 665: 666: 667: 668: 669: 670: 671: 672: 673: 674: 675: 676: 677: 678: 679: 680: 681: 682: 683: 684: 685: 686: 687: 688: 689: 690: 691: 692: 693: 694: 695: 696: 697: 698: 699: 700: 701: 702: 703: 704: 705: 706: 707: 708: 709: 710: 711: 712: 713: 714: 715: 716: 717: 718: 719: 720: 721: 722: 723: 724: 725: 726: 727: 728: 729: 730: 731: 732: 733: 734: 735: 736: 737: 738: 739: 740: 741: 742: 743: 744: 745: 746: 747: 748: 749: 750: 751: 752: 753: 754: 755: 756: 757: 758: 759: 760: 761: 762: 763: 764: 765: 766: 767: 768: 769: 770: 771: 772: 773: 774: 775: 776: 777: 778: 779: 780: 781: 782: 783: 784: 785: 786: 787: 788: 789: 790: 791: 792: 793: 794: 795: 796: 797: 798: 799: 800: 801: 802: 803: 804: 805: 806: 807: 808: 809: 810: 811: 812: 813: 814: 815: 816: 817: 818: 819: 820: 821: 822: 823: 824: 825: 826: 827: 828: 829: 830: 831: 832: 833: 834: 835: 836: 837: 838: 839: 840: 841: 842: 843: 844: 845: 846: 847: 848: 849: 850: 851: 852: 853: 854: 855: 856: 857: 858: 859: 860: 861: 862: 863: 864: 865: 866: 867: 868: 869: 870: 871: 872: 873: 874: 875: 876: 877: 878: 879: 880: 881: 882: 883: 884: 885: 886: 887: 888: 889: 890: 891: 892: 893: 894: 895: 896: 897: 898: 899: 900: 901: 902: 903: 904: 905: 906: 907: 908: 909: 910: 911: 912: 913: 914: 915: 916: 917: 918: 919: 920: 921: 922: 923: 924: 925: 926: 927: 928: 929: 930: 931: 932: 933: 934: 935: 936: 937: 938: 939: 940: 941: 942: 943: 944: 945: 946: 947: 948: 949: 950: 951: 952: 953: 954: 955: 956: 957: 958: 959: 960: 961: 962: 963: 964: 965: 966: 967: 968: 969: 970: 971: 972: 973: 974: 975: 976: 977: 978: 979: 980: 981: 982: 983: 984: 985: 986: 987: 988: 989: 990: 991: 992: 993: 994: 995: 996: 997: 998: 999: 1000: 1001: 1002: 1003: 1004: 1005: 1006: 1007: 1008: 1009: 1010: 1011: 1012: 1013: 1014: 1015: 1016: 1017: 1018: 1019: 1020: 1021: 1022: 1023: 1024: 1025: 1026: 1027: 1028: 1029: 1030: 1031: 1032: 1033: 1034: 1035: 1036: 1037: 1038: 1039: 1040: 1041: 1042: 1043: 1044: 1045: 1046: 1047: 1048: 1049: 1050: 1051: 1052: 1053: 1054: 1055: 1056: 1057: 1058: 1059: 1060: 1061: 1062: 1063: 1064: 1065: 1066: 1067: 1068: 1069: 1070: 1071: 1072: 1073: 1074: 1075: 1076: 1077: 1078: 1079: 1080: 1081: 1082: 1083: 1084: 1085: 1086: 1087: 1088: 1089: 1090: 1091: 1092: 1093: 1094: 1095: 1096: 1097: 1098: 1099: 1100: 1101: 1102: 1103: 1104: 1105: 1106: 1107: 1108: 1109: 1110: 1111: 1112: 1113: 1114: 1115: 1116: 1117: 1118: 1119: 1120: 1121: 1122: 1123: 1124: 1125: 1126: 1127: 1128: 1129: 1130: 1131: 1132: 1133: 1134: 1135: 1136: 1137: 1138: 1139: 1140: 1141: 1142: 1143: 1144: 1145: 1146: 1147: 1148: 1149: 1150: 1151: 1152: 1153: 1154: 1155: 1156: 1157: 1158: 1159: 1160: 1161: 1162: 1163: 1164: 1165: 1166: 1167: 1168: 1169: 1170: 1171: 1172: 1173: 1174: 1175: 1176: 1177: 1178: 1179: 1180: 1181: 1182: 1183: 1184: 1185: 1186: 1187: 1188: 1189: 1190: 1191: 1192: 1193: 1194: 1195: 1196: 1197: 1198: 1199: 1200: 1201: 1202: 1203: 1204: 1205: 1206: 1207: 1208: 1209: 1210: 1211: 1212: 1213: 1214: 1215: 1216: 1217: 1218: 1219: 1220: 1221: 1222: 1223: 1224: 1225: 1226: 1227: 1228: 1229: 1230: 1231: 1232: 1233: 1234: 1235: 1236: 1237: 1238: 1239: 1240: 1241: 1242: 1243: 1244: 1245: 1246: 1247: 1248: 1249: 1250: 1251: 1252: 1253: 1254: 1255: 1256: 1257: 1258: 1259: 1260: 1261: 1262: 1263: 1264: 1265: 1266: 1267: 1268: 1269: 1270: 1271: 1272: 1273: 1274: 1275: 1276: 1277: 1278: 1279: 1280: 1281: 1282: 1283: 1284: 1285: 1286: 1287: 1288: 1289: 1290: 1291: 1292: 1293: 1294: 1295: 1296: 1297: 1298: 1299: 1300: 1301: 1302: 1303: 1304: 1305: 1306: 1307: 1308: 1309: 1310: 1311: 1312: 1313: 1314: 1315: 1316: 1317: 1318: 1319: 1320: 1321: 1322: 1323: 1324: 1325: 1326: 1327: 1328: 1329: 1330: 1331: 1332: 1333: 1334: 1335: 1336: 1337: 1338: 1339: 1340: 1341: 1342: 1343: 1344: 1345: 1346: 1347: 1348: 1349: 1350: 1351: 1352: 1353: 1354: 1355: 1356: 1357: 1358: 1359: 1360: 1361: 1362: 1363: 1364: 1365: 1366: 1367: 1368: 1369: 1370: 1371: 1372: 1373: 1374: 1375: 1376: 1377: 1378: 1379: 1380: 1381: 1382: 1383: 1384: 1385: 1386: 1387: 1388: 1389: 1390: 1391: 1392: 1393: 1394: 1395: 1396: 1397: 1398: 1399: 1400: 1401: 1402: 1403: 1404: 1405: 1406: 1407: 1408: 1409: 1410: 1411: 1412: 1413: 1414: 1415: 1416: 1417: 1418: 1419: 1420: 1421: 1422: 1423: 1424: 1425: 1426: 1427: 1428: 1429: 1430: 1431: 1432: 1433: 1434: 1435: 1436: 1437: 1438: 1439: 1440: 1441: 1442: 1443: 1444: 1445: 1446: 1447: 1448: 1449: 1450: 1451: 1452: 1453: 1454: 1455: 1456: 1457: 1458: 1459: 1460: 1461: 1462: 1463: 1464: 1465: 1466: 1467: 1468: 1469: 1470: 1471: 1472: 1473: 1474: 1475: 1476: 1477: 1478: 1479: 1480: 1481: 1482: 1483: 1484: 1485: 1486: 1487: 1488: 1489: 1490: 1491: 1492: 1493: 1494: 1495: 1496: 1497: 1498: 1499: 1500: 1501: 1502: 1503: 1504: 1505: 1506: 1507: 1508: 1509: 1510: 1511: 1512: 1513: 1514: 1515: 1516: 1517: 1518: 1519: 1520: 1521: 1522: 1523: 1524: 1525: 1526: 1527: 1528: 1529: 1530: 1531: 1532: 1533: 1534: 1535: 1536: 1537: 1538: 1539: 1540: 1541: 1542: 1543: 1544: 1545: 1546: 1547: 1548: 1549: 1550: 1551: 1552: 1553: 1554: 1555: 1556: 1557: 1558: 1559: 1560: 1561: 1562: 1563: 1564: 1565: 1566: 1567: 1568: 1569: 1570: 1571: 1572: 1573: 1574: 1575: 1576: 1577: 1578: 1579: 1580: 1581: 1582: 1583: 1584: 1585: 1586: 1587: 1588: 1589: 1590: 1591: 1592: 1593: 1594: 1595: 1596: 1597: 1598: 1599: 1600: 1601: 1602: 1603: 1604: 1605: 1606: 1607: 1608: 1609: 1610: 1611: 1612: 1613: 1614: 1615: 1616: 1617: 1618: 1619: 1620: 1621: 1622: 1623: 1624: 1625: 1626: 1627: 1628: 1629: 1630: 1631: 1632: 1633: 1634: 1635: 1636: 1637: 1638: 1639: 1640: 1641: 1642: 1643: 1644: 1645: 1646: 1647: 1648: 1649: 1650: 1651: 1652: 1653: 1654: 1655: 1656: 1657: 1658: 1659: 1660: 1661: 1662: 1663: 1664: 1665: 1666: 1667: 1668: 1669: 1670: 1671: 1672: 1673: 1674: 1675: 1676: 1677: 1678: 1679: 1680: 1681: 1682: 1683: 1684: 1685: 1686: 1687: 1688: 1689: 1690: 1691: 1692: 1693: 1694: 1695: 1696: 1697: 1698: 1699: 1700: 1701: 1702:





by: LZ1Posted on 2009-06-11 at 10:41:04ID: 24604834
Can you give a URL or the complete code to a page along with the entire css?