document.write(
'<div id="capacityCalculatorTooltip" class="tooltipDiv arrowTooltip">' +
'<div class="wrapper">' +
'	<div class="tooltipTitle">' +
'		<div class="button" style="float:right;"><a href="javascript:void(0);" onclick="hideTooltip(this);">X</a></div>' +
'		Water Heater Capacity Calculator' +
'	</div>' +
'	<div>' +
'		<form class="capacityCalculatorForm" onsubmit="calculateAndDisplayCapacity(this); return false;">' +
'			<table border="0" cellspacing="0" cellpadding="0" style="width: 100%;">' +
'			<tr>' +
'				<td>What type of fuel does your home use?</td>' +
'				<td>' +
'					<select name="fuel_type">' +
'						<option value="" selected="selected">Please select</option>' +
'						<option value="Electric">Electric</option>' +
'						<option value="Gas">Gas</option>' +
'						<!-- <option value="LP">Liquid Propane</option> -->' +
'					</select>' +
'				</td>' +
'			</tr>' +
'			<tr>' +
'				<td>How many people are there in your household? </td>' +
'				<td>' +
'					<select name="num_peeps">' +
'						<option value="" selected="selected">Please select</option>' +
'						<option value="1">1</option>' +
'						<option value="2">2</option>' +
'						<option value="3">3</option>' +
'						<option value="4">4</option>' +
'						<option value="5">5</option>' +
'						<option value="6">6</option>' +
'						<option value="7">7</option>' +
'						<option value="8">8</option>' +
'						<option value="9">9</option>' +
'						<option value="10">10 or more</option>' +
'					</select>' +
'				</td>' +
'			</tr>' +
'			<tr>' +
'				<td>How many bathtubs/showers do you have? </td>' +
'				<td>' +
'					<select name="num_tubs">' +
'						<option value="" selected="selected">Please select</option>' +
'						<option value="1">1</option>' +
'						<option value="2">2</option>' +
'						<option value="3">3</option>' +
'						<option value="4">4</option>' +
'						<option value="5">5</option>' +
'						<option value="6">6</option>' +
'						<option value="7">7</option>' +
'						<option value="8">8</option>' +
'						<option value="9">9</option>' +
'						<option value="10">10 or more</option>' +
'					</select>' +
'				</td>' +
'			</tr>' +
'			<tr>' +
'				<td>Do you have a dishwasher?  </td>' +
'				<td>' +
'					<select name="dishwasher">' +
'						<option value="" selected="selected">Please select</option>' +
'						<option value="1">yes</option>' +
'						<option value="0">no</option>' +
'					</select>' +
'				</td>' +
'			</tr>' +
'			<tr>' +
'				<td>Do you have a washing machine?</td>' +
'				<td>' +
'					<select name="washingmach">' +
'						<option value="" selected="selected">Please select</option>' +
'						<option value="1">yes</option>' +
'						<option value="0">no</option>' +
'					</select>' +
'				</td>' +
'			</tr>' +
'			<tr>' +
'				<td>&nbsp;</td>' +
'				<td>' +
'					<input type="image" src="images/button_submit_orange.gif" width="55" height="19" alt="Submit" />' +
'				</td>' +
'			</tr>' +
'			</table>' +
'			<div id="capacityCalculatorResult" class="capacityCalculatorResult">' +
'				<!-- placeholder for results -->' +
'			</div>' +
'		</form>' +
'	</div>' +
'</div>' +
'</div>' +
'' +
'<div id="gas12YearWarrantyTooltip" class="tooltipDiv arrowTooltip warrantyTooltipDiv">' +
'<div class="wrapper">' +
'	<div class="tooltipTitle">' +
'		<div class="button" style="float:right;"><a href="javascript:void(0);" onclick="hideTooltip(this);">X</a></div>' +
'		Gas Water Heater Features and Warranties' +
'	</div>' +
'	<div>' +
'		<table border="0" cellspacing="0" cellpadding="0" class="imageBlock">' +
'		<tr>' +
'		<td class="imageCell">' +
'			<img src="images/gas_water_heater.jpg" width="83" height="243" alt="Gas Water Heater" style="border-width: 0;" />' +
'			<p class="highlight"><b>See written warranty for details</b></p>' +
'		</td>' +
'		<td class="textCell">' +
'			<h3 class="tight">12-Year Limited Warranty</h3>' +
'			<ul>' +
'				<li>Full 1 year in-home warranty</li>' +
'				<li>12 year limited warranty on tank and parts</li>' +
'				<li>No filters to clean, service or replace</li>' +
'				<li>Self-cleaning system reduces mineral build-up</li>' +
'				<li>Burner and pilot view window for easy inspection</li>' +
'				<li>Tamper-resistant brass drain valve</li>' +
'				<li>Higher BTU&rsquo;s provide faster recovery</li>' +
'				<li>Simple push button pilot light ignition</li>' +
'				<li>Heavy duty anode rod for extended tank protection</li>' +
'				<li>Color coordinated heat trap fittings for inlet and outlet connections</li>' +
'				<li>Durable high temperature dip tube to meet plumbing code requirements</li>' +
'				<li>Porcelain-lined tank for additional protection</li>' +
'				<li>Factory installed temperature and pressure relief valve to help reduce installation time</li>' +
'				<li>Low Nox design&nbsp;&mdash; select models meet Southern California Air Quality Management District (SCAQMD) Rule 1121 nitrous oxide emission requirements</li>' +
'				<li>High altitude compliant&nbsp;&mdash; all models are certified for applications up to 7,700 feet above sea level. Some models are certified up to 10,200 feet above sea level</li>' +
'				<li>Meets or exceeds National Appliance Energy Conservation Act (NAECA) and ASHRAE requirements</li>' +
'				<li>GE SmartShield&trade; Sensor System included on GE gas water heaters:' +
'					<ul>' +
'						<li>30, 40 and 50 gallon gas water heaters manufactured on or after July 1, 2003</li>' +
'						<li>60 gallon gas water heaters manufactured on or after July 1, 2007</li>' +
'						<li>75 gallon gas water heaters manufactured on or after January 1, 2008</li>' +
'					</ul>' +
'				</li>' +
'			</ul>' +
'		</td>' +
'		</tr>' +
'		</table>' +
'	</div>' +
'</div>' +
'</div>' +
'' +
'<div id="gas9YearWarrantyTooltip" class="tooltipDiv arrowTooltip warrantyTooltipDiv">' +
'<div class="wrapper">' +
'	<div class="tooltipTitle">' +
'		<div class="button" style="float:right;"><a href="javascript:void(0);" onclick="hideTooltip(this);">X</a></div>' +
'		Gas Water Heater Features and Warranties' +
'	</div>' +
'	<div>' +
'		<table border="0" cellspacing="0" cellpadding="0" class="imageBlock">' +
'		<tr>' +
'		<td class="imageCell">' +
'			<img src="images/gas_water_heater.jpg" width="83" height="243" alt="Gas Water Heater" style="border-width: 0;" />' +
'			<p class="highlight"><b>See written warranty for details</b></p>' +
'		</td>' +
'		<td class="textCell">' +
'			<h3 class="tight">9-Year Limited Warranty</h3>' +
'			<ul>' +
'				<li>Full 1 year in-home warranty</li>' +
'				<li>9 year limited warranty on tank and parts</li>' +
'				<li>No filters to clean, service or replace</li>' +
'				<li>Self-cleaning system reduces mineral build-up</li>' +
'				<li>Simple push button pilot light ignition</li>' +
'				<li>Heavy duty anode rod for extended tank protection</li>' +
'				<li>Color coordinated heat trap fittings for inlet and outlet connections</li>' +
'				<li>Durable high temperature dip tube to meet plumbing code requirements</li>' +
'				<li>Porcelain-lined tank for additional protection</li>' +
'				<li>Factory installed temperature and pressure relief valve to help reduce installation time</li>' +
'				<li>Low Nox design&nbsp;&mdash; select models meet Southern California Air Quality Management District (SCAQMD) Rule 1121 nitrous oxide emission requirements</li>' +
'				<li>High Altitude Compliant&nbsp;&mdash; All models are certified for applications up to 6,000 feet above sea level. Some models are certified up to 10,200 feet above sea level</li>' +
'				<li>Meets or exceeds National Appliance Energy Conservation Act (NAECA) and ASHRAE requirements</li>' +
'				<li>GE SmartShield&trade; Sensor System included on GE gas water heaters:' +
'					<ul>' +
'						<li>40 and 50 gallon gas water heaters manufactured on or after July 1, 2003</li>' +
'					</ul>' +
'				</li>' +
'			</ul>' +
'		</td>' +
'		</tr>' +
'		</table>' +
'	</div>' +
'</div>' +
'</div>' +
'' +
'<div id="gas6YearWarrantyTooltip" class="tooltipDiv arrowTooltip warrantyTooltipDiv">' +
'<div class="wrapper">' +
'	<div class="tooltipTitle">' +
'		<div class="button" style="float:right;"><a href="javascript:void(0);" onclick="hideTooltip(this);">X</a></div>' +
'		Gas Water Heater Features and Warranties' +
'	</div>' +
'	<div>' +
'		<table border="0" cellspacing="0" cellpadding="0" class="imageBlock">' +
'		<tr>' +
'		<td class="imageCell">' +
'			<img src="images/gas_water_heater.jpg" width="83" height="243" alt="Gas Water Heater" style="border-width: 0;" />' +
'			<p class="highlight"><b>See written warranty for details</b></p>' +
'		</td>' +
'		<td class="textCell">' +
'			<h3 class="tight">6-Year Limited Warranty</h3>' +
'			<ul>' +
'				<li>Full 1 year in-home warranty</li>' +
'				<li>6 year limited warranty on tank and parts</li>' +
'				<li>No filters to clean, service or replace</li>' +
'				<li>Simple push button pilot light ignition</li>' +
'				<li>Heavy duty anode rod for extended tank protection</li>' +
'				<li>Color coordinated heat trap fittings for inlet and outlet connections</li>' +
'				<li>Durable high temperature dip tube to meet plumbing code requirements</li>' +
'				<li>Porcelain-lined tank for additional protection</li>' +
'				<li>Factory installed temperature and pressure relief valve to help reduce installation time</li>' +
'				<li>Low Nox design&nbsp;&mdash; select models meet Southern California Air Quality Management District (SCAQMD) Rule 1121 nitrous oxide emission requirements</li>' +
'				<li>High Altitude Compliant&nbsp;&mdash; All models are certified for applications up to 6,000 feet above sea level. Some models are certified up to 10,200 feet above sea level</li>' +
'				<li>Meets or exceeds National Appliance Energy Conservation Act (NAECA) and ASHRAE requirements</li>' +
'				<li>GE SmartShield&trade; Sensor System included on GE gas water heaters:' +
'					<ul>' +
'						<li>30, 40 and 50 gallon gas water heaters manufactured on or after July 1, 2003</li>' +
'						<li>75 gallon gas water heaters manufactured on or after January 1, 2008</li>' +
'					</ul>' +
'				</li>' +
'			</ul>' +
'		</td>' +
'		</tr>' +
'		</table>' +
'	</div>' +
'</div>' +
'</div>' +
'' +
'<div id="electric12YearWarrantyTooltip" class="tooltipDiv arrowTooltip warrantyTooltipDiv">' +
'<div class="wrapper">' +
'	<div class="tooltipTitle">' +
'		<div class="button" style="float:right;"><a href="javascript:void(0);" onclick="hideTooltip(this);">X</a></div>' +
'		Electric Water Heater Features and Warranties' +
'	</div>' +
'	<div>' +
'		<table border="0" cellspacing="0" cellpadding="0" class="imageBlock">' +
'		<tr>' +
'		<td class="imageCell">' +
'			<img src="images/electric_water_heater.jpg" width="97" height="238" alt="Electric Water Heater" style="border-width: 0;" />' +
'			<p class="highlight"><b>See written warranty for details</b></p>' +
'		</td>' +
'		<td class="textCell">' +
'			<h3 class="tight">12-Year Limited Warranty</h3>' +
'			<ul>' +
'				<li>Full 1 year in-home warranty</li>' +
'				<li>12 year limited warranty on tank and parts</li>' +
'				<li>Stainless steel upper heating element  with patented resistor design</li>' +
'				<li>Dual heating elements for fast recovery</li>' +
'				<li>5500 watt resistor element heats water 22% faster than standard 4500 watt models</li>' +
'				<li>Tamper-resistant brass drain valve</li>' +
'				<li>Self-cleaning system reduces mineral build-up</li>' +
'				<li>Heavy duty anode rod for extended tank protection</li>' +
'				<li>Color coordinated heat trap fittings for inlet and outlet connections</li>' +
'				<li>Durable high temperature dip tube to meet plumbing code requirements</li>' +
'				<li>Porcelain-lined tank for additional protection</li>' +
'				<li>Factory installed temperature and pressure relief valve to help reduce installation time</li>' +
'				<li>Meets or exceeds National Appliance Energy Conservation Act (NAECA) and ASHRAE requirements</li>' +
'			</ul>' +
'		</td>' +
'		</tr>' +
'		</table>' +
'	</div>' +
'</div>' +
'</div>' +
'' +
'<div id="electric9YearWarrantyTooltip" class="tooltipDiv arrowTooltip warrantyTooltipDiv">' +
'<div class="wrapper">' +
'	<div class="tooltipTitle">' +
'		<div class="button" style="float:right;"><a href="javascript:void(0);" onclick="hideTooltip(this);">X</a></div>' +
'		Electric Water Heater Features and Warranties' +
'	</div>' +
'	<div>' +
'		<table border="0" cellspacing="0" cellpadding="0" class="imageBlock">' +
'		<tr>' +
'		<td class="imageCell">' +
'			<img src="images/electric_water_heater.jpg" width="97" height="238" alt="Electric Water Heater" style="border-width: 0;" />' +
'			<p class="highlight"><b>See written warranty for details</b></p>' +
'		</td>' +
'		<td class="textCell">' +
'			<h3 class="tight">9-Year Limited Warranty</h3>' +
'			<ul>' +
'				<li>Full 1 year in-home warranty</li>' +
'				<li>9 year limited warranty on tank and parts</li>' +
'				<li>Stainless steel upper heating element with patented resistor design</li>' +
'				<li>Dual heating elements for fast recovery</li>' +
'				<li>Self-cleaning system reduces mineral build-up</li>' +
'				<li>Heavy duty anode rod for extended tank protection</li>' +
'				<li>Color coordinated heat trap fittings for inlet and outlet connections</li>' +
'				<li>Durable high temperature dip tube to meet plumbing code requirements</li>' +
'				<li>Porcelain-lined tank for additional protection</li>' +
'				<li>Factory installed temperature and pressure relief valve to help reduce installation time</li>' +
'				<li>Meets or exceeds National Appliance Energy Conservation Act (NAECA) and ASHRAE requirements</li>' +
'			</ul>' +
'		</td>' +
'		</tr>' +
'		</table>' +
'	</div>' +
'</div>' +
'</div>' +
'' +
'<div id="electric6YearWarrantyTooltip" class="tooltipDiv arrowTooltip warrantyTooltipDiv">' +
'<div class="wrapper">' +
'	<div class="tooltipTitle">' +
'		<div class="button" style="float:right;"><a href="javascript:void(0);" onclick="hideTooltip(this);">X</a></div>' +
'		Electric Water Heater Features and Warranties' +
'	</div>' +
'	<div>' +
'		<table border="0" cellspacing="0" cellpadding="0" class="imageBlock">' +
'		<tr>' +
'		<td class="imageCell">' +
'			<img src="images/electric_water_heater.jpg" width="97" height="238" alt="Electric Water Heater" style="border-width: 0;" />' +
'			<p class="highlight"><b>See written warranty for details</b></p>' +
'		</td>' +
'		<td class="textCell">' +
'			<h3 class="tight">6-Year Limited Warranty</h3>' +
'			<ul>' +
'				<li>Full 1 year in-home warranty</li>' +
'				<li>6 year limited warranty on tank and parts</li>' +
'				<li>Dual heating elements for fast recovery</li>' +
'				<li>Magnesium anode rod for extended tank protection</li>' +
'				<li>Color coordinated heat trap fittings for inlet and outlet connections</li>' +
'				<li>Durable high temperature dip tube to meet plumbing code requirements</li>' +
'				<li>Porcelain-lined tank for additional protection</li>' +
'				<li>Factory installed temperature and pressure relief valve to help reduce installation time</li>' +
'				<li>Meets or exceeds National Appliance Energy Conservation Act (NAECA) and ASHRAE requirements</li>' +
'			</ul>' +
'		</td>' +
'		</tr>' +
'		</table>' +
'	</div>' +
'</div>' +
'</div>' +
'' +
'<div id="smartShieldTooltip" class="tooltipDiv arrowTooltip">' +
'<div class="wrapper">' +
'	<div class="tooltipTitle">' +
'		<div class="button" style="float:right;"><a href="javascript:void(0);" onclick="hideTooltip(this);">X</a></div>' +
'		SmartShield: Innovative Air Shut-Off System' +
'	</div>' +
'	<div>' +
'		<p>The SmartShield Sensor System completely seals the combustion chamber in a flammable vapor event, eliminating the hazards caused by a spill of flammable material, such as gasoline.</p>' +
'		<table border="0" cellspacing="0" cellpadding="0" class="imageBlock fullline">' +
'		<tr>' +
'		<td class="imageCell">' +
'			<img src="images/smart_shield.jpg" width="176" height="152" alt="SmartShield Air Shut-Off System" />' +
'		</td>' +
'		<td class="textCell">' +
'			<h4 class="tight">Engineered to Last</h4>' +
'			<p class="tight">The SmartShield Sensor System assures long and efficient operation with three distinct features:</p>' +
'			<ul class="fullline fullspaced arrows">' +
'				<li>100% of combustion air is carefully controlled by our high performance air intake.</li>' +
'				<li>Air enters the product from the sides and well above the floor, away from where dust tends to settle.</li>' +
'				<li>The air path leading to the arrestor plate contains flow baffles, carefully controlling combustion air and reduces accumulation of lint, dust, and oil.</li>' +
'			</ul>' +
'		</td>' +
'		</tr>' +
'		</table>' +
'	</div>' +
'</div>' +
'</div>');
