|
|
|
|
Clean Wood Floors Hardwood, laminate and hard surface floor cleaners for wax and polyurethane coated wood floors - secure on-line shopping. [more]
| Cleaning Up Advice on common household cleaning tasks with information on a variety of products. [more]
| Cleaning.com Supplying cleaning equipment and chemicals for carpet, janitorial, leather, and wood. [more]
| Clean4Less.com, LLC Site offers janitorial supplies, cleaning products, and storage sheds. Products may be purchased online with the option of pickup at warehouses in USA. [more]
| CleanSource Supply Selling cleaners, deodorizers, hand soaps, floor finish and stripper, as well as carpet and vehicle cleaners. [more]
| Cleantech Specializing in a multitude of cleaning products. Based in Kilmarnock, Ayreshire. [more]
|
|
| Alexa statistic for http://www.thecleanteam.com/ |
|
| Related sites for http://www.thecleanteam.com/ |
| CleanXsolutions_com Concentrated chemical cleaning products for the hospital, restaurant and hotel industries. Ships in USA. | | Craigmore Tools and equipment for business or home use. | | Damprid_Inc_ Moisture and odor control products. | | Datek Seller of products including trash cans, air fresheners and janitorial supplies. | | DEI_Services Offers a variety of household and personal items by the case. | | The_Dial_Store Soap, laundry supplies and air fresheners from the Dial Corporation, mainly sold in kits intended as care packages. | | DIYcleaning_com Offers cleaning accessories including buffing pads, sponges and wash mitts. Located in St. Louis, Mo. | | Don_Aslett\'s_Cleaning_Center Take the work out of housework. Books and supplies to make cleaning easier and faster. | | Donson_Supply A wide range of janitorial supplies and equipment. | | Dr__Doormat Antimicrobial treated doormats designed to help keep homes clean and healthy by attacking fungus, bacteria, mold and mildew. | | Dura_Wax Offering janitorial supplies including floor finishes, strippers, sealers and cleaners. | | Dustmitex A clean and natural non-toxic solution to eliminate house dust mites and allergens in carpet, upholstery, and mattress, greatly reducing symptoms of asthma and allergies. | | Eclectic_Selections Offers dryer link brush. Dryer fires, appliance malfunction and excessive energy use can be avoided by proper maintenance. Safety tips, photos, and additional uses. | | Eco_Trade_Marketing International Trade in ecological products for household and cars | | Engleside_Products Active Orange cleaner and grease removers which are environmentally friendly. | | ETM_Envirotrends Environmentally safe cleaning, skin and body care products including microfiber cloths. | | EverCare_by_Helmac Lint rollers, washable lint removers, stain erasers, deodorizers, and shoe shapers. | | Evergreen_Labs The company specializes in developing unique niche products for the wine, kitchen, home, and cleaning industries. | | Fastclean Full service carpet cleaning business that sells stain removal and carpet care products. | | Floor_Care_Shop Providing carpet care, tile, vinyl, laminate and hardwood cleaners. | | Floor_Cleaners Stocks a variety of cleaners. | | Floor_Covering_Associates Online sales of cleaners for floor, carpet and tile. Includes a directory for flooring choices and questions. | | Flor_Stor Manufacturer's recommended floor care products. | | ForceOut Stain and odor removal products. | | The_Fuller__Brush_Company Cleaning and personal care products for home and business. | | Furniture_Products_com Furniture care products and accessories for home maintenance. Cleaners for wood, fabric, leather, jewelry, teak, marble, brass, copper, silver and other materials. | | FurnitureStuff_com Professional cleaning products that clean wood, leather and fabric. | | Goddard\'s Manufactures a complete line of metal cleaners and polishes. Product line covers care for silver, furniture, jewelry, fabric, copper and brass. | | Halbro\'s_Cleaning_Solutions Janitorial, building maintenance, and housekeeping cleaning supplies. Home cleaning advice. | | Haley\'s_Hints Set of books containing handy household tips and inexpensive cleaning solution recipes. Also sells related cleaning kits | | Henry_Vacuum_Cleaners_(U_K_) Offers Henry Vacuum cleaners online in the U.K. | | Hi-Glitz Provides cleaning solutions for house, garden. | | Hygeia_Chemical Cleaning supplies for the home and business. | | Instagone_Products Cleaning supplies for both laundry and the entire home. | | J_&_J_Home_Products Up Out and Away brand carpet and upholstery stain remover. Recommended carpet cleaning guide and stain removal tips are also available. | | J_&_R_Supply Offers janitorial cleaning supplies. | | Jamestowne_Wax_Co_,_Inc_ Offering furniture polish and treatment products. | | Jani_Source Distributor of sanitary maintenance equipment and cleaning supplies. | | Joe_Campanelli\'s_Home_Care_Products Offers consumers professional grade products that can now be purchased for the home. | | Jon-Don Offers a large selection of carpet cleaning equipment and chemicals. |
|
Efficient Housecleaning and Environmentally Friendly Cleaners by The Clean Team
// Beginning of Date Validaton routines
function checkdate(objName,fldNam) {
var datefield = objName;
if (chkdate(objName) == false) {
datefield.select();
alert(fldNam + " is not a valid date in mm/dd/yyyy format");
datefield.focus();
return false;
}
else {
return true;
}
}
function chkdate(objName) {
var strDatestyle = "US"; //United States date style
//var strDatestyle = "EU"; //European date style
var strDate;
var strDateArray;
var strDay;
var strMonth;
var strYear;
var intday;
var intMonth;
var intYear;
var booFound = false;
var datefield = objName;
var strSeparatorArray = new Array("-"," ","/",".");
var intElementNr;
var err = 0;
var strMonthArray = new Array(12);
strMonthArray[0] = "Jan";
strMonthArray[1] = "Feb";
strMonthArray[2] = "Mar";
strMonthArray[3] = "Apr";
strMonthArray[4] = "May";
strMonthArray[5] = "Jun";
strMonthArray[6] = "Jul";
strMonthArray[7] = "Aug";
strMonthArray[8] = "Sep";
strMonthArray[9] = "Oct";
strMonthArray[10] = "Nov";
strMonthArray[11] = "Dec";
strDate = datefield.value;
if (strDate.length < 1) {
return true;
}
for (intElementNr = 0; intElementNr < strSeparatorArray.length; intElementNr++) {
if (strDate.indexOf(strSeparatorArray[intElementNr]) != -1) {
strDateArray = strDate.split(strSeparatorArray[intElementNr]);
if (strDateArray.length != 3) {
err = 1;
return false;
}
else {
strDay = strDateArray[0];
strMonth = strDateArray[1];
strYear = strDateArray[2];
}
booFound = true;
}
}
if (booFound == false) {
if (strDate.length>5) {
strDay = strDate.substr(0, 2);
strMonth = strDate.substr(2, 2);
strYear = strDate.substr(4);
}
}
//if (strYear.length == 2) {
//strYear = '20' + strYear;
//}
// test if valid year
if (strYear.length < 4) {
err = 2;
return false;
}
// US style
if (strDatestyle == "US") {
strTemp = strDay;
strDay = strMonth;
strMonth = strTemp;
}
intday = parseInt(strDay, 10);
if (isNaN(intday)) {
err = 2;
return false;
}
intMonth = parseInt(strMonth, 10);
if (isNaN(intMonth)) {
for (i = 0;i12 || intMonth 31 || intday < 1)) {
err = 6;
return false;
}
if ((intMonth == 4 || intMonth == 6 || intMonth == 9 || intMonth == 11) && (intday > 30 || intday < 1)) {
err = 7;
return false;
}
if (intMonth == 2) {
if (intday < 1) {
err = 8;
return false;
}
if (LeapYear(intYear) == true) {
if (intday > 29) {
err = 9;
return false;
}
}
else {
if (intday > 28) {
err = 10;
return false;
}
}
}
if (strDatestyle == "US") {
//datefield.value = strMonthArray[intMonth-1] + " " + intday+" " + strYear;
datefield.value = intMonth + "/" + intday +"/" + strYear;
}
else {
//datefield.value = intday + " " + strMonthArray[intMonth-1] + " " + strYear;
datefield.value = intday + "/" + intMonth + "/" + strYear;
}
return true;
}
function LeapYear(intYear) {
if (intYear % 100 == 0) {
if (intYear % 400 == 0) { return true; }
}
else {
if ((intYear % 4) == 0) { return true; }
}
return false;
}
function doDateCheck(from, to) {
if (Date.parse(from.value)
/******************************************************************
convert_date()
Function to convert supplied dates to format - mm/dd/yyyy.
Valid input dates =
mmddyy, mmmddyy, mmddyyyy, mmmddyyyy,
m/d/yy, m/dd/yy, mm/d/yy, mm/dd/yy, mmm/d/yy, mmm/dd/yy,
m/d/yyyy, m/dd/yyyy, mm/d/yyyy, mm/dd/yyyy, mmm/d/yyyy, mmm/dd/yyyy
Valid date seperators =
'-','.','/',' ',':','_',','
Calls convert_month()
invalid_date()
validate_date()
validate_year()
Author: Simon Kneafsey
Email: simonkneafsey@hotmail.com
WebSite: www.simonkneafsey.co.uk
Date Created: 4/9/00
Notes: Please feel free to use/edit this script. If you do please keep my comments and details
intact and notify me via a quick Email to the address above. Enjoy!
*******************************************************************/
function convert_date(field1)
{
var fLength = field1.value.length; /* Length of supplied field in characters. */
var divider_values = new Array ('-','.','/',' ',':','_',','); /* Array to hold permitted date seperators. Add in '\' value */
var array_elements = 7; /* Number of elements in the array - divider_values. */
var month1 = new String(null); /* month value holder */
var day1 = new String(null); /* day value holder */
var year1 = new String(null); /* year value holder */
var divider1 = null; /* divider holder */
var outdate1 = null; /* formatted date to send back to calling field holder */
var counter1 = 0; /* counter for divider looping */
var divider_holder = new Array ('0','0','0'); /* array to hold positions of dividers in dates */
var s = String(field1.value); /* supplied date value variable */
/* If field is empty do nothing */
if ( fLength == 0 ) {
return true;
}
/* Deal with today or now */
if ( field1.value.toUpperCase() == 'NOW' || field1.value.toUpperCase() == 'TODAY' ) {
var newDate1 = new Date();
if (navigator.appName == "Netscape") {
var myYear1 = newDate1.getYear() + 1900;
}
else {
var myYear1 =newDate1.getYear();
}
var myMonth1 = newDate1.getMonth()+1;
var myDay1 = newDate1.getDate();
field1.value = myMonth1 + "/" + myDay1 + "/" + myYear1;
fLength = field1.value.length;/* re-evaluate string length. */
s = String(field1.value)/* re-evaluate the string value. */
}
/* Check the date is the required length */
if ( fLength != 0 && (fLength < 6 || fLength > 11) ) {
invalid_date(field1);
return false;
}
/* Find position and type of divider in the date */
for ( var i=0; i
var _qevents = _qevents || [];
(function() {
var elem = document.createElement('script');
elem.src = (document.location.protocol == "https:" ? "https://secure" : "http://edge") + ".quantserve.com/quant.js";
elem.async = true;
elem.type = "text/javascript";
var scpt = document.getElementsByTagName('script')[0];
scpt.parentNode.insertBefore(elem, scpt);
})();
_qevents.push({
qacct:"p-a41mGgRDF_3qs"
});
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-2279473-8']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();

You enjoy a clean home, but who has the time? Cut housecleaning time in half with Jeff Campbell’s best-seller Speed Cleaning. It includes cleaning methods and the safest and most effective cleaning supplies and cleaning products available. Including: microfiber cloths, new, stain removal products, vacuum cleaners, HEPA filters, ostrich down feather dusters, home care kits, sh-mops, brooms and brushes, floor mats, marble, granite and stone care, window washing products, Also by Jeff Campbell, Spring Cleaning, and Clutter Control - is just what you need to make your home a wonderful place to be.
Call 800-238-2996 or visit our online catalog. • Privacy Policy | Security Guarantee | Product Guarantee • Inquire at 1-800-717-2532
efficient housecleaning:: green cleaning:: non toxic cleaning:: professional strength cleaning supplies:: the clean team:: clutter control:: hepa filters:: speed cleaning:: cleaning apron:: non-toxic cleaners:: sh-mop:: cleaning mop:: brooms and brushes:: cleaning supplies:: cleaning products:: speed cleaning book:: spring cleaning tips:: feather duster:: household cleaning tools:: Jeff Campbell:: Debbie Sardone::
_uacct = "UA-2430274-1";
urchinTracker();
var x, pageurl, tzo, ver, id, rp, prot, imgsrc, bn;
id=17675;
ver=2.1;
pageurl=document.URL;
rp=document.referrer;
prot=location.protocol;
bn=navigator.appName + ' v' + navigator.appVersion;
x = new Date();
tzo=x.getTimezoneOffset()/60;
imgsrc=prot + '//track.websitetrafficreport.com/loghit.asp?'
+ 'id=' + id + '&rp=' + escape(rp) + '&sw=' + screen.width + '&sh=' + screen.height
+ '&pa=' + escape(pageurl) + '&bn=' + escape(bn) + '&tz=' + tzo + '&vr=' + ver;
document.write(' ');
|
|