
<!-- Begin
var item = new Array();

/* Here is where all the magic happens.  
    Just enter as many additional pages that
    that you want to search, then fill in the
    additional listings for each page.
*/

// "Page Name","path","Page Title","Many,Key,Words","Descriptive Comments"

c=0; item[c]=new Array("index.html","","Horizonal - Home","index,main,start,home","Home Page.");
c++; item[c]=new Array("index.html","","Horizonal Subsurface Systems, Inc. - Home Page","index,main,start,home,front,construction dewatering and groundwater control,contruction drainage,dewatering construction,dewatering contractors,dewatering design,dewatering pond,dewatering trench,dewatering well,sediment dewatering,barrier wall,barrier wall construction,barrier wall forms,barrier wall installation,barrier wall system,barrier walls,beam slurry  wall,bentonite company,bentonite slurry wall,bio walls,erosion control,filled barrier wall,in leachate,landfill leachate treatment,landfills leachate,reactive barrier wall,slurry construction,slurry cut off wall,slurry design,soil cement stabilization,soil stabilization contractors,soil-retaining wall,stabilize soil,wall barriers,water  barrier wall,a beach stabilization,beach restoration,beach restoration inc,beach stabilization,coastal restorations,coastline restoration,costal restoration,florida beach restoration,island beach restoration,of beach restoration,shore restoration,shoreline restoration,construction wetland,environmental assessment remediation,environmental remediation in,is site remediation,one pass trenching,remediation equipment,remediation services,response remediation,site assessment remediation,agricultural water supply,agriculture irrigation supply,agriculture water supply,aquifer discharge,aquifer recharging,aquifer storage,asr wells,horizontal drills,horizontal wells,in irrigation water,irrigation water source,irrigation water system,managed aquifer recharge,water harvesting,water recycling system,water used for irrigation","Innovative Solutions to Subsurface Environmental Management - From identifying fresh and economical water supplies to dewatering construction sites and installing barrier wall systems, we understand how to discover, recover utilize, contain, and remediate subsurface groundwater.");

c++; item[c]=new Array("appl_barrier_walls.htm","","Horizonal Subsurface Systems, Inc. - Applications - Barrier Walls","key1words","The HSSI POLYWALL Barrier System uses custom designed and manufactured equipment to install a continuous vertical sheet of 40 to 100 mil High Density Polyethylene (HDPE) to depths of more than 30 feet. Manufactured of virgin, first quality, high molecular weight polyethylene, this custom-formulated geomembrane is highly resistant to sunlight, chemicals, toxic wastes and hydrocarbons.");

c++; item[c]=new Array("appl_const_dewatering.htm","","Horizonal Subsurface Systems, Inc. - Applications - Construction Dewatering","key2words","Fast and Economical Construction Dewatering Systems - HSSI one-pass trenching delivers dewatering services to dry construction sites in preparation for - Sewer and water pipe installation and repair - Roadway construction - Foundations for power plants and buildings - Water and wastewater treatment plants - Retention ponds - Gas line burial - Our patented, one-pass horizontal trenching technology offers faster installation over conventional well pointing. And, quick response on short notice accommodates tight production schedules. Contact us to learn how our services help contractors. The HSSI POLYWALL Barrier System uses custom designed and manufactured equipment to install a continuous vertical sheet of 40 to 100 mil High Density Polyethylene (HDPE) to depths of more than 30 feet. Manufactured of virgin, first quality, high molecular weight polyethylene, this custom-formulated geomembrane is highly resistant to sunlight, chemicals, toxic wastes and hydrocarbons.");

c++; item[c]=new Array("appl_fire_protection.htm","","Horizonal Subsurface Systems, Inc. - Applications - Fire Protection","key3words","One-pass trenching technology from HSSI helps municipalities establish horizontal well systems utilizing shallow surficial aquifers as a water source for fire protection and response. The patented Safer System may be installed under 15 feet of water table providing access to as much as 15 X 95,000 gallons or 1,375,000 gallons of water per acre.");

c++; item[c]=new Array("appl_remediation.htm","","Horizonal Subsurface Systems, Inc. - Applications - Remediation","key4words","The HSSI Linear Contaminant Remediation System LCRS supports environmental remediation through the site specific configuration and installation of horizontal well systems. Our patented one-pass trenching technology replaces conventional vertical well systems and has the ability to install a specified backfill or media, in a one step process.  The system is flexible enough to allow the installation of the filter media from the trench bottom to the surface or to whatever depth is required. The wells can be accurately installed at predetermined depths utilizing a laser leveling system to minimize the amount of ground water removal, thus reducing the treatment volume. Reduced volumes occur because the LCRS system recovers contaminants at a higher concentration than conventional vertical recovery wells. Trenched Horizontal Wells can be used for a number of purposes, such as Groundwater Withdrawal, Air Sparging, Soil Flushing in Situ, Bio-Venting, Bio-Remediation in Situ, Soil Vapor Extraction, Exfiltration of Effluent, Leachate Containment Collection, Free Product Recovery Treatment Walls.");

c++; item[c]=new Array("appl_water_supply.htm","","Horizonal Subsurface Systems, Inc. - Applications - Water Supply","key5words","Vertical wells in deep aquifers and surface water impoundments such as ponds or lakes have been the traditional source for irrigation water supplies, potable water sources and water for industrial use. But the intrusion of salt water in coastal areas, the draw down of lake levels,  and the overall general deterioration of water quality have increasingly limited the use of these sources. Compounding the situation,  regulatory restrictions often restrict consumptive use to protect the available other deep aquifer resources. HSSI's patented and proprietary one-pass trenching technology provides a unique means to identify and utilize shallow surficial aquifers as an alternative source for a range of water supply applications. Water supply for municipal re-use systems, Primary irrigation for citrus, row and truck crops, Primary source irrigation for golf courses and commercial developments, Irrigation and freeze protection for ferneries, Control of lake water levels in conjunction with POLYWALL Barrier System, Wetland preservation and mitigation in conjunction with POLYWALL Barrier System, Primary and secondary sources for public water supply, Primary and secondary sources for fire protection Aquifer recharge, and tail water recovery.");



page="<html><head><title>Search Results</title></head><body bgcolor='white'><center>";
logo='<img src="image/horizontal_logo_small.jpg"<p></p><p><b>Search Results on Horizontal Subsurface Systems, Inc. Website</b>';
tbl1="<table border=0 cellspacing=10 width=80%>";

function search(frm) {
win = window.open("","","scrollbars");
win.document.write(page);
win.document.write(logo);
win.document.write(tbl1);
txt = frm.srchval.value.split(" ");
fnd = new Array(); total=0;
for (i = 0; i < item.length; i++) {
fnd[i] = 0; order = new Array(0, 4, 2, 3);
for (j = 0; j < order.length; j++)
for (k = 0; k < txt.length; k++)
if (item[i][order[j]].toLowerCase().indexOf(txt[k]) > -1 && txt[k] != "")
fnd[i] += (j+1);
}
for (i = 0; i < fnd.length; i++) {
n = 0; w = -1;
for (j = 0;j < fnd.length; j++)
if (fnd[j] > n) { n = fnd[j]; w = j; };
if (w > -1) total += show(w, win, n);
fnd[w] = 0;
}
win.document.write("</table><br>Total found: "+total+"<br></body></html>");
win.document.close();
}
function show(which,wind,num) {
link = item[which][1] + item[which][0]; 
line = "<tr><td><a href='"+link+"'>"+item[which][2]+"</a> Score: "+num+"<br>";
line += item[which][4] + "<br>"+link+"</td></tr>";
wind.document.write(line);
return 1;
}
//  End -->
