<!-- Begin

// NOTE: If you use a ' add a slash before it like this \'

// YOU CAN TURN THE MAILING ADDRESS ON OR OFF

var showaddress1		= "yes"		// SHOW OUR MAILING ADDRESS 1 

var showaddress2		= "no"		// SHOW OUR MAILING ADDRESS 2




// THIS IS THE MAILING ADDRESS 1 TEXT AREA 

   if (showaddress1 == "yes") {

document.write('<fieldset style=" text-align:left; width:150px; padding: 5px;" class="smalltext"><legend>');
document.write('<span class="subtitle">Our mailing address:</span></legend>');

document.write('Cleaning Team USA, LLC '); 
document.write('<br>');
document.write('P.O. Box 423027 '); 
document.write('<br>');
document.write('Kissimmee, FL 34742-3027 ');
document.write('<br>');

document.write('</fieldset>');
document.write('<br><br><br>');
}

// END OF THE MAILING ADDRESS 1 TEXT AREA






// THIS IS THE MAILING ADDRESS 2 TEXT AREA

   if (showaddress2 == "yes") {

document.write('<fieldset style=" text-align:left; width:150px; padding: 5px;" class="smalltext"><legend>');
document.write('<span class="subtitle">Our mailing address:</span></legend>');

document.write('Cleaning Team USA, LLC '); 
document.write('<br>');
document.write('830 N. John Young Pkwy '); 
document.write('<br>');
document.write('Kissimmee, FL 34741 ');
document.write('<br>');

document.write('</fieldset>');
document.write('<br><br><br>');
}

// END OF THE MAILING ADDRESS 2 TEXT AREA




//  End -->
