<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Fix Your PVC Leak with Leak-B-Gone!</title>
	<atom:link href="http://www.pvcleakrepair.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.pvcleakrepair.com</link>
	<description>Fix your PVC leaks with Leak-B-Gone!</description>
	<lastBuildDate>Mon, 10 Aug 2009 21:38:18 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title></title>
		<link>http://www.pvcleakrepair.com/home/</link>
		<comments>http://www.pvcleakrepair.com/home/#comments</comments>
		<pubDate>Wed, 15 Jul 2009 23:05:32 +0000</pubDate>
		<dc:creator>pete</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://pvcleakrepair.com/?p=1</guid>
		<description><![CDATA[&#8220;Fix Any PVC Leak
in 60 Seconds or Less
with Leak-B-Gone!&#8221;
With Leak-B-Gone, You Can Save Hours of Your Time With Each Installation and Spend Just a Fraction of the Overall Costs Compared to Other Solutions!
With this handy new innovation, you can quickly, easily and permanently repair any PVC leak! You can use it to fix leaky irrigation [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<h1>&#8220;Fix Any PVC Leak<br />
in 60 Seconds or Less<br />
with Leak-B-Gone!&#8221;</h1>
<h2>With Leak-B-Gone, You Can Save Hours of Your Time With Each Installation and Spend Just a Fraction of the Overall Costs Compared to Other Solutions!</h2>
<p>With this handy new innovation, you can quickly, easily and permanently repair any PVC leak! You can use it to fix leaky irrigation PVC, or your DWV (drain, waste and vent) PVC plumbing in your house!</p>
<div align="center">
<object width="615" height="493">
<param name="movie" value="http://www.youtube.com/v/qh9YxXRULFU&#038;hl=en&#038;fs=1&#038;"></param>
<param name="allowFullScreen" value="true"></param>
<param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/qh9YxXRULFU&#038;hl=en&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="615" height="493"></embed></object>
</div>
<p>&nbsp;</p>
<div id="custom1">
<p align="center"><font size="10"><strong>STEP ONE</strong></font></p>
<h2>Locate Your Nearest Leak-B-Gone Supplier!</h2>
<hr />
<p>Simply enter your zip code below and instantly receive a list of distributors that supply the Leak-B-Gone PVC leak-stopper rings! <strong>Note: You must have javascript enabled.</strong> You may also want to adjust the &#8216;Search Within Distance&#8217; parameters to broaden your search.</p>
<div align="center">
     <script src="http://maps.google.com/maps?file=api&v=2&key=ABQIAAAAPxDjcvzc2UIQsMvDiJfZ2BTQeQ9PvkEklCON5vhXB2PwvSbcSRThVMb7GC4Sxo8tXbqCeTXgL0lwhg"
            type="text/javascript"></script>

    <script type="text/javascript">

    var map;
    var geocoder;

    function load() {
      if (GBrowserIsCompatible()) {
        geocoder = new GClientGeocoder();
        map = new GMap2(document.getElementById("map"));
        map.addControl(new GLargeMapControl());
        map.addControl(new GMapTypeControl());
        map.setCenter(new GLatLng(40, -100), 4);
      }
    }

   function searchLocations() {
     var address = document.getElementById("addressInput").value;
     geocoder.getLatLng(address, function(latlng) {
       if (!latlng) {
         alert(address + "Please enter a valid address or zip code");
       } else {
         searchLocationsNear(latlng);
       }
     });
   }

   function searchLocationsNear(center) {
     var radius = document.getElementById("radiusSelect").value;
	  var address = document.getElementById("addressInput").value;
	  
	  var searchUrl = "../loc_finder/finder.php?lat=" + center.lat() + "&lng=" + center.lng() + "&radius=" + radius + "&address=" + address;
	  
	  //document.write(searchUrl);
     
	 GDownloadUrl(searchUrl, function(data) {
       var xml = GXml.parse(data);
       var markers = xml.documentElement.getElementsByTagName("marker");
       map.clearOverlays();

       var sidebar = document.getElementById("sidebar");
       sidebar.innerHTML = "";
       if (markers.length == 0) {
         sidebar.innerHTML = "No results found.";
         map.setCenter(new GLatLng(40, -100), 4);
         return;
       }

       var bounds = new GLatLngBounds();
       for (var i = 0; i < markers.length; i++) {
         var locID = markers[i].getAttribute("locationID");
    	 var company = markers[i].getAttribute("company");
	     var address = markers[i].getAttribute("address");
	     var phone = markers[i].getAttribute("phone");
		 var daddress = markers[i].getAttribute("daddress");
         var saddress = markers[i].getAttribute("saddress");
         var address2 = markers[i].getAttribute("address2");
         var address3 = markers[i].getAttribute("address3");
         var distance = parseFloat(markers[i].getAttribute("distance"));
         var point = new GLatLng(parseFloat(markers[i].getAttribute("lat")),
                                 parseFloat(markers[i].getAttribute("lng")));
         
         var marker = createMarker(point, i, company, address, daddress, saddress, phone, locID);
         map.addOverlay(marker, i);
         var sidebarEntry = createSidebarEntry(marker, i, company, address2, address3, phone, distance);
         sidebar.appendChild(sidebarEntry);
         bounds.extend(point);
       }
       map.setCenter(bounds.getCenter(), map.getBoundsZoomLevel(bounds));
     });
   }
   
  
    function createMarker(point, index, company, address, daddress, saddress, phone, locID) {
      
	   var letter = String.fromCharCode("A".charCodeAt(0) + index);
	   var letteredIcon = new GIcon(G_DEFAULT_ICON);
       letteredIcon.image = "http://www.google.com/mapfiles/marker" + letter + ".png";
 	  
	  var mkroptions = 
	  { title: address,
	  	icon:letteredIcon  };
	  
	  var marker = new GMarker(point, mkroptions);
        var html = "<b>" + company + "</b> <br/>" + address + "<br/>" + phone  + "<br/><br/><a href=http://maps.google.com/maps?saddr=" + saddress + "&daddr=" + daddress + "&ie=UTF8&layer=c&pw=2 target=_blank>Click for driving directions</a>" ;
    GEvent.addListener(marker, "click", function() {
        marker.openInfoWindowHtml(html);
      });
      return marker;
    }

    function createSidebarEntry(marker, i, company, address2, address3, phone, distance) {
      var div = document.createElement("div");
	  var letter = String.fromCharCode("A".charCodeAt(0) + i);
        var html = "<b>" + letter + " - " + company + "</b><br/> " + distance.toFixed(1) + " Miles<br/>" + address2 + "<br/>" + address3 + "<br/>" + phone + "<br/><br/>";
     
	  div.innerHTML = html;
      div.style.cursor = "pointer";
      div.style.marginBottom = "5px"; 
      GEvent.addDomListener(div, "click", function() {
        GEvent.trigger(marker, "click");
      });
      GEvent.addDomListener(div, "mouseover", function() {
        div.style.backgroundColor = "#E8E8E8";
      });
      GEvent.addDomListener(div, "mouseout", function() {
        div.style.backgroundColor = "#F5F5F5";
      });
      return div;
    }

  </script>

  <body onLoad="load()" onUnload="GUnload()">
      <table cellspacing="0" cellpadding="4">
  <tr>
    <td align="left" bgcolor="#E8E8E8" class="searchcopy">
      <table border="0" cellspacing="0" cellpadding="4">
        <tr>
          <td align="right">Enter Your Zip Code</td>
          <td><input name="addressInput" type="text" class="searchcopytx" id="addressInput" size="15"/>
          </td>
        </tr>

        <tr>
          <td align="right">Search Distance Within:</td>
          <td><select name="radiusSelect" class="searchcopy10" id="radiusSelect">
              <option value="5" selected>5 Miles</option>
              <option value="10">10 Miles</option>
              <option value="25">25 Miles</option>
            </select>
          </td>
        </tr>
      </table>
      <p align="center">
        <input type="button" onClick="searchLocations()" value="Search Locations" class="searchcopybtn"/>
        </p>
    </p>    </td>
  </tr>
</table>
<hr>
<div style="font-size:11px;">
  <table> 
    <tbody> 
      <tr id="cm_mapTR">

        <td width="180" valign="top" bgcolor="#F3F3F3"> 
        
        <div id="sidebar" style="overflow: auto; width:180px; height: 380px; font-size: 11px; color: #000; background-color: #F5F5F5; padding:5px;" align="left">Once you enter your search parameters above, this column will display your search results.</div>
        
 

        </td>
        <td width="380px"> <div id="map" style=" width:380px; height:400px"></div> </td>

      </tr> 
    </tbody>
  </table>
  </div> 
</div>
</div>
<p>&nbsp;</p>
<div id="custom1">
<p align="center"><font size="10"><strong>STEP TWO</strong></font></p>
<h2>Enter Your Name and Email Address<br /> And We&#8217;ll Instantly Email You a Rebate for<br /> $5 Off Your Leak-B-Gone Purchase!</h2>
<p>Enter your name and email address below and we&#8217;ll instantly send you a $5 rebate form that you can send in with your proof of purchase (receipt). The entire process takes less than 3 minutes! This is a limited time offer, so enter your name and email below to get your rebate form now. No other action is required on your part!</p>
<p><center></p>
<form method="post" action="http://www.aweber.com/scripts/addlead.pl">
<input type="hidden" name="meta_web_form_id" value="172760508">
<input type="hidden" name="meta_split_id" value="">
<input type="hidden" name="unit" value="pvc-leak-repair">
<input type="hidden" name="redirect" value="http://www.PVCLeakRepair.com/thank-you" id="redirect_d2d0124fdeb11cc280b02c11dc543448">
<input type="hidden" name="meta_redirect_onlist" value="">
<input type="hidden" name="meta_adtracking" value="">
<input type="hidden" name="meta_message" value="1">
<input type="hidden" name="meta_required" value="from">
<input type="hidden" name="meta_forward_vars" value="0">
<table>
<tr>
<td colspan=2><center></center></td>
</tr>
<tr>
<td>Name:</td>
<td>
<input type="text" name="name" value="" size="20"></td>
</tr>
<tr>
<td>Email:</td>
<td>
<input type="text" name="from" value="" size="20"></td>
</tr>
<tr>
<td colspan=2><center></center></td>
</tr>
<tr>
<td align="center" colspan="2">
<input type="submit" name="submit" value="Send Me My Rebate!"></td>
</tr>
</table>
</form>
<p><img src="http://forms.aweber.com/form/displays.htm?id=jOxM7GwMrAwc" border="0" /><br />
</center>
</div>
<p><font size="2" color="#666666">www.PVCLeakRepair.com is a property of King Innovation, Inc. and Leak-B-Gone is a registered Trademark of King Innovation, Inc. If you have any questions about this website, King Innovation, or Leak-B-Gone, please contact 800-633-0232 or customerservice@kinginnovation.com.</font></p>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.pvcleakrepair.com/home/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
