//		if (checkrequired(frm) == false) return false;
//		if (verifyMail(objMail) == false) return false;
//		if (checkbody(frm,"CONTENT")== false) return false;
//		if(Imageval(frm.photo)==false) return false  ;
//		if(Pdfval(frm.requiredpdf)==false) return false  ;
//		if (chkSelectedRecord(frm) == false ) return false ;
//		if(ValidateDate(frm.month.value+'/'+frm.day.value+'/'+frm.year.value)== false ) return false ;
//-------------------------------------------------
// JavaScript Document

//Create a boolean variable to check for a valid IE instance.
var xmlhttp = false;
//Check if we are using IE.
try {
//If the javascript version is greater than 5.
xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
} catch (e) {
//If not, then use the older active x object.
try {
//If we are using IE.
xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
} catch (E) {
//Else we must be using a non-IE browser.
xmlhttp = false;
}
}
//If we are using a non-IE browser, create a JavaScript instance of the object.
if (!xmlhttp && typeof XMLHttpRequest != 'undefined') {
xmlhttp = new XMLHttpRequest();
}

//Create a boolean variable to check for a valid IE instance.
var xmlhttp2 = false;
//Check if we are using IE.
try {
//If the javascript version is greater than 5.
xmlhttp2 = new ActiveXObject("Msxml2.XMLHTTP");
} catch (e) {
//If not, then use the older active x object.
try {
//If we are using IE.
xmlhttp2 = new ActiveXObject("Microsoft.XMLHTTP");
} catch (E) {
//Else we must be using a non-IE browser.
xmlhttp2 = false;
}
}
//If we are using a non-IE browser, create a JavaScript instance of the object.
if (!xmlhttp2 && typeof XMLHttpRequest != 'undefined') {
xmlhttp2 = new XMLHttpRequest();

}

//-------------------------------------------------

	function MM_preloadImages() { //v3.0
	  var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
	    var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
	    if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
	}
	function MM_swapImgRestore() { //v3.0
	  var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
	}
	function MM_findObj(n, d) { //v4.01
	  var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
	    d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
	  if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
	  for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
	  if(!x && d.getElementById) x=d.getElementById(n); return x;
	}
	
	function MM_swapImage() { //v3.0
	  var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
	   if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
	}
//-------------------------------------------------------------------------

	function checkPassword(frm)
	{
		if (checkrequired(frm) == false) return false;
		if (frm.requirednewpassword.value !=  frm.requiredconfirmpassword.value)
		{
				alert("Password Mismatch.") ;
				frm.requiredconfirmpassword.focus() ;
				return false ;
		}
		return true ;
	}
//-------------------------------------------------

	function checkEditor()
	{
		javascript: var oEditor = FCKeditorAPI.GetInstance('MyEditor');
		var content = oEditor.GetXHTML(true)
		
		content = content.replace(/<[^>]*>/g,'') ;
		content = content.replace(/&nbsp;*/g,' ') ;
		content = trim(content, ' ') ;
		return (countWords(trim(content)));
	}

//-------------------------------------------------------------
	function SetBgColor(obj)
	{
			obj.style.backgroundColor='#DDDDDD' ;
	}
//---------------------------------------
	function SetDefaultBbColor(obj)
	{
			obj.style.backgroundColor='#FFFFFF' ;
	}
//-------------------------------------------------

	function SetDefaultBbColorUSER(obj)
	{
			obj.style.backgroundColor='#f9f6ef' ;
	}
//-------------------------------------------------

	function checkRank(frm)
	{
		if (Arraycheckrequired(frm) == false ) return false ;
		return true ;
	}
//-------------------------------------------------

//-------------------------------------------------

	function PhoneFormat(obj)
	{
		var re= /\D/;
		// test for this format: (xxx)xxx-xxxx
		var re2 = /^\({1}\d{3}\)\d{3}-\d{4}/; 
		// test for this format: xxx-xxx-xxxx
		//var re2 = /^\d{3}-\d{3}-\d{4}/;
		
		for (i=0; i<obj.value.length;i++){
		var num=obj.value;
		
		var newNum;
		 if (num != "" && re2.test(num)!=true){
		   if (num != ""){
			 while (re.test(num)){
			 num = num.replace(re,"");
			 }
		   }
		
		  if (num.length != 10){
				alert('Please enter a 10 digit phone number');
				obj.select();
				break;
			}
		   else {
				 // for format (xxx)xxx-xxxx
				// newNum = '(' + num.substring(0,3) + ')' + num.substring(3,6) + '-' + num.substring(6,10);
				 // for format xxx-xxx-xxxx
				  newNum = num.substring(0,3) + '-' + num.substring(3,6) + '-' + num.substring(6,10);
				 obj.value=newNum;
			 }
		   }
		  }
	}
//-------------------------------------------------
	function checkLogin(which)
	{
		if (verifyMail(which.requiredEmail) == false) return false;
		if (checkrequired(which) == false) return false;
		return true;		
	}
//-------------------------------------------------
	function SetCombo(theDayElement,mt)
	{
		var optionCounter;
		for (optionCounter = 0; optionCounter < theDayElement.length;optionCounter++)
		{
		  if(theDayElement.options[optionCounter].value == mt)
		  {
			  theDayElement.options[optionCounter].selected = true
		  }
		}
	}
//-------------------------------------------------
	function winOpenNew(str,Name,Resize,Width,Height,Left,Top)
	{
		window.open(str,Name,'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable='+Resize+',width='+Width+',height='+Height+',left='+Left+',top='+Top)
	}
//-------------------------------------------------
	function chkAll(form)
	{
		len = form.elements.length;
		var i=0;
		Checked=false ;
		for( i=0 ; i<len ; i++)
		{
			if (form.elements[i].type=='checkbox')
			{
				form.elements[i].checked=true;
			}
		}
		return false ;
	}
//---------------------------------------------------
	function UnchkAll(form)
	{
		len = form.elements.length;
		var i=0;
		Checked=false ;
		for( i=0 ; i<len ; i++)
		{
			if (form.elements[i].type=='checkbox')
			{
				form.elements[i].checked=false;
			}
		}
		return false ;
	}
//---------------------------------------------------
	function SelectOption(frm,obj)
	{
		len = frm.elements[obj].length;
		i = 0;
		
		while (i < len)
		{
			frm.elements[obj][i].selected = 'true' ;
			i++;
		}
	}
//---------------------------------------------------
	function DeleteCheck() 
	{
		var Verify=confirm("Are you sure you want to delete this record and all related records?");
		if (Verify == true)
		{
			return true;			
		}
		else {
			return false;			
		}
	}
//-----------------------------------------


	function Arraycheckrequired(which) 
	{ 
		var pass=true; 
		if (document.images) 
		{ 
			for (i=0;i<which.length;i++) 
			{ 
				var tempobj=which.elements[i]; 
				if (tempobj.name.substring(0,8)=="required") 
				{ 
	
					if ((tempobj.type=="text"||tempobj.type=="textarea"||tempobj.type=="password" ||tempobj.type.toString().charAt(0)=="s")&&			tempobj.value=='')
					{ 
						if(tempobj.disabled==false)
						{
							pass=false; 
							break; 
						}
					} 
				} 
			} 
		} 
		if (!pass) 
		{ 
			shortFieldName=tempobj.name.substring(8,30).toUpperCase(); 
			idStartPos=tempobj.name.indexOf("-") ;
			shortFieldName=tempobj.name.substring(8,idStartPos).toUpperCase(); 
			
			alert("Please make sure the "+shortFieldName+" field was properly completed."); 
			tempobj.focus() ;						
			return false; 
					
		} else 
		
		return true; 
				
	} 	
//--------------------------------------------------------
	function ImageDeleteCheck() 
	{
		var Verify=confirm("Are you sure you want to delete this  image ?");
		if (Verify == true)
		{
			return true;			
		}
		else {
			return false;			
		}
	}
//----------------------------------------------------------


//=================================================================================================
	function AdminSendCheck(msgval,msgdata) 
	{
		var Verify=confirm("Are you sure that this " + msgval + " " + msgdata + " has been delivered?");
		if (Verify == true)
			return true;			
		else
			return false;			
	}
//-------------------------------------------------
	function PDFDeleteCheck() 
	{
		var Verify=confirm("Are you sure you want to delete this file?");
		if (Verify == true)
		{
			return true;			
		}
		else {
			return false;			
		}
	}
//-------------------------------------------------
	function checkGallery(frm)
	{	
		if (checkrequired(frm) == false) return false;
		if (frm.frmaction.value == 'new')
		{
			if(frm.Image.value != '')
			{
				if(Imageval(frm.Image)==false) return false  ;
			}
			else //if(frm.Image.value != '')
			{
				alert('Please make sure that IMAGE field was properly completed.') ;
				return false ;
			}//else //if(frm.Image.value != '')
			
		} //if (frm.frmaction.value == 'new')
		else	
		{
			if(frm.Image.value != '')
			{
				if(Imageval(frm.Image)==false) return false  ;
			}
			
		} //if (frm.frmaction.value == 'new')
	
		return true ;
	}
//----------------------------------------------------	
	function checkDateValidation1(objDay,objMonth,objYear, isRequired)
	{
		if (isRequired)
		{
			if(objMonth.value == '' && objDay.value == '' && objYear.value == '')	
			{
				alert('Please make sure that DATE field is property completed.');
				objMonth.focus();
				return false ;
			}
		}
		if(objMonth.value != '' )
		{
			if (objDay.value == '')
			{
				alert('Please make sure that DAY field is property completed.');
				objDay.focus();
				return false ;
			}	// if (objDay.value == '')
			
			if (objYear.value == '')
			{
				alert('Please make sure that YEAR field is property completed.');
				objYear.focus();
				return false ;
			}	// if (objYear.value == '')
		}	// if(objMonth.value != '' )
		else if(objDay.value != '' )
		{
			if (objMonth.value == '')
			{
				alert('Please make sure that MONTH field is property completed.');
				objMonth.focus();
				return false ;
			}	// if (objMonth.value == '')
			
			if (objYear.value == '')
			{
				alert('Please make sure that YEAR field is property completed.');
				objYear.focus();
				return false ;
			}	// if (objYear.value == '')
			
		}	// else if(objDay.value != '' )
		else if(objYear.value != '' )
		{
			if (objMonth.value == '')
			{
				alert('Please make sure that MONTH field is property completed.');
				objMonth.focus();
				return false ;
			}	// if (objMonth.value == '')
			
			if (objDay.value == '')
			{
				alert('Please make sure that DAY field is property completed.');
				objDay.focus();
				return false ;
			}	// if (objDay.value == '')
		}	// else if(objYear.value != '' )
		
		var _date = objMonth.value + "/" + objDay.value + "/" + objYear.value;
		
		
		if(objMonth.value != '' && objDay.value != '' && objYear.value != '')	
		{
			if(ValidateDate(_date) == false) 
			{
				objMonth.focus();
				return false ;
			}
		}
	
		return true ;
	}
//----------------------------------------------------
	function ShowHideDivDisplay(id)
	{
		if ( !document.getElementById(id) ) return ;
		
		{
			obj = document.getElementById(id) ;
//			alert(obj.style.display) ;
			obj.style.display = (obj.style.display == '' || obj.style.display == 'block') ? 'none' : 'block' ;
//			alert(obj.style.display) ;
		}
		
		return ;
	}
	
function swapDivDisplay(id1, id2)
	{
		if (document.getElementById(id1) && document.getElementById(id2))
		{
			obj1 = document.getElementById(id1) ;
			obj2 = document.getElementById(id2) ;
			
			if (obj1.style.display == '')
			{
				obj1.style.display = 'none' ;
				obj2.style.display = '' ;
			}
			else
			{
				obj1.style.display = '' ;
				obj2.style.display = 'none' ;
			}
		}
	}	
//----------------------------------------------------
function noPeriod(obj) {
  var pattern=obj.value;
  var period=pattern.charAt(0);
if(period==".") {
     obj.value = obj.value.replace(period, "");
  }
 }

/*
	#########################################################
	# JAVASCRIPT FUNCTIONS FOR THE SITE metropolitan 	 #
	#########################################################
*/

	function checkGallery(frm)
	{	
		if (checkrequired(frm) == false) return false;
		if (checkFCKEditorValue('MyEditor', '') == false) return false ;	
		
		if (frm.frmaction.value == 'new')
		{

			if(frm.Image.value != '')
			{
				if(Imageval(frm.Image)==false) return false  ;
			}
			else //if(frm.Image.value != '')
			{
				alert('Please make sure that IMAGE field was properly completed.') ;
				return false ;
			}//else //if(frm.Image.value != '')
			
		} //if (frm.frmaction.value == 'new')
		else	
		{
			if(frm.Image.value != '')
			{
				if(Imageval(frm.Image)==false) return false  ;
			}
			
		} //if (frm.frmaction.value == 'new')
	
		return true ;
	}

//----------------------------------------------
function checkFreeEstimate(frm)
{
	if (verifyMail(frm.requiredEmail) == false) return false;
	if (checkrequired(frm) == false) return false;

	if (frm.requiredFromTime.value > 12)
	{
		alert('Please make sure that FROM TIME field was properly completed.') ;
		frm.requiredFromTime.focus() ;
		return false ;
	}

	if (frm.requiredToTime.value > 12)
	{
		alert('Please make sure that TO TIME field was properly completed.') ;
		frm.requiredToTime.focus() ;
		return false ;
	}

	if (frm.Home.value == '' && frm.Work.value == '' && frm.Cell.value == '' )
	{
		alert('Please make sure that one of the PHONE field was properly completed.') ;
		frm.Home.focus() ;
		return false ;
	}
	return true ;
}	
//----------------------------------------------
var arrTestimonial = Array() ;

arrTestimonial[0] = '<div class="PaddingTB"><em>&quot;. . . we would like to   express our sincere appreciation for   making   our bathroom one of the most   beautiful and functional areas   in our   home.&quot; <br></em></div><div class="TextColor5" align="right"><span class="PaddingTB"><strong>- <em>George   and Shirley S.</em></strong></span></div></div>' ; 

arrTestimonial[1] = '<div class="PaddingTB"><em>&quot;I want to compliment your firm on every aspect of its operations .   . .   quality work, on time, with minimal disruption and maximum professionalism.&quot; <br></em></div><div class="TextColor5" align="right"><span class="PaddingTB"><strong>- <em>Irina C.</em></strong></span></div></div>' ; 

arrTestimonial[2] = '<div class="PaddingTB"><em>&quot;We are very satisfied   with our remodeled bathroom and will   recommend   Metro Bath and Tile to others . . .&quot; <br></em></div><div class="TextColor5" align="right"><span class="PaddingTB"><strong>- <em>Jeffrey S.</em></strong></span></div></div>' ; 

arrTestimonial[3] = '<div class="PaddingTB"><em>&quot;We were extremely   pleased with the work performed . . .&quot; <br></em></div><div class="TextColor5" align="right"><span class="PaddingTB"><strong>- <em>David and Holly W.</em></strong></span></div></div>' ; 

arrTestimonial[4] = '<div class="PaddingTB"><em>&quot;You have transformed our 50\'s bathroom into a spectacular, inviting     spa. Thank you so much for your attention to quality detail and quick     turnaround. End result is perfect &amp; functional!&quot; <br></em></div><div class="TextColor5" align="right"><span class="PaddingTB"><strong>- <em>Tom and Janet R. - Bethesda, MD</em></strong></span></div></div>' ; 

arrTestimonial[5] = '<div class="PaddingTB"><em>&quot;Your crew needs to be commended for the professional and courteous     service they provided. The made every attempt to disrupt our household     as little as possible and cleaned up after themselves every   afternoon.&quot; <br></em></div><div class="TextColor5" align="right"><span class="PaddingTB"><strong>- <em>L. Anderson</em></strong></span></div></div>' ; 

arrTestimonial[6] = '<div class="PaddingTB"><em>&quot;We want to thank your staff for helping us plan our new improvement   in   an efficient and painless way.&quot; <br></em></div><div class="TextColor5" align="right"><span class="PaddingTB"><strong>- <em>W. and R. Barbee</em></strong></span></div></div>' ; 

arrTestimonial[7] = '<div class="PaddingTB"><em>&quot;I have had several other firms work on my home. Your firm far   surpassed   any of them. The craftsmanship of the tile work, the   painting, the   attention to detail, and your superior customer service   would lead me to   recommend your firm to anyone.&quot; <br></em></div><div class="TextColor5" align="right"><span class="PaddingTB"><strong>- <em>I. Clements</em></strong></span></div></div>' ; 

arrTestimonial[8] = '<div class="PaddingTB"><em>&quot;I have found the whole experience very satisfying and welcome all     guests to my home to see the excellent craftsmanship.&quot; <br></em></div><div class="TextColor5" align="right"><span class="PaddingTB"><strong>- <em>C. Wendal</em></strong></span></div></div>' ; 

arrTestimonial[9] = '<div class="PaddingTB"><em>&quot;I want to express to you the outstanding work you have done to   remodel   our bathrooms and appreciate the quality of work done by your   friendly   crews.&quot; <br></em></div><div class="TextColor5" align="right"><span class="PaddingTB"><strong>- <em>G. and P. Matsumura</em></strong></span></div></div>' ; 

arrTestimonial[10] = '<div class="PaddingTB"><em>&quot;I love my bathroom! I appreciate your level of professionalism -   you   kept me updated every step of the way. The quality of your work is     excellent and I will not hesitate to recommend Metropolitan Bath   &amp;   Tile.&quot; <br></em></div><div class="TextColor5" align="right"><span class="PaddingTB"><strong>- <em>J. and J. Barbour</em></strong></span></div></div>' ; 

arrTestimonial[11] = '<div class="PaddingTB"><em>&quot;We are very satisfied with our remodeled bathroom and will   recommend   Metro Bath and Tile to others...&quot; <br></em></div><div class="TextColor5" align="right"><span class="PaddingTB"><strong>- <em>J.D. Sisson</em></strong></span></div></div>' ; 

arrTestimonial[12] = '<div class="PaddingTB"><em>&quot;You did an absolutely beautiful job. We were impressed with your   skills   and efficiency. We are enjoying the results of your work every   day.&quot; <br></em></div><div class="TextColor5" align="right"><span class="PaddingTB"><strong>- <em>M. and B. McLean</em></strong></span></div></div>' ; 

arrTestimonial[13] = '<div class="PaddingTB"><em>&quot;I would recommend them to absolutely anyone.&quot; <br></em></div><div class="TextColor5" align="right"><span class="PaddingTB"><strong>- <em>B. Oswalt</em></strong></span></div></div>' ; 

arrTestimonial[14] = '<div class="PaddingTB"><em>&quot;They came in both on time and on budget.&quot; <br></em></div><div class="TextColor5" align="right"><span class="PaddingTB"><strong>- <em>E. Madan</em></strong></span></div></div>' ; 

arrTestimonial[15] = '<div class="PaddingTB"><em>&quot;What I loved about my Metropolitan Bath and Tile job was that they   used   drop cloths and every day they swept up after the job..&quot; <br></em></div><div class="TextColor5" align="right"><span class="PaddingTB"><strong>- <em>The Lightners</em></strong></span></div></div>' ; 

arrTestimonial[16] = '<div class="PaddingTB"><em>&quot;They showed up every day until the job was done.&quot; <br></em></div><div class="TextColor5" align="right"><span class="PaddingTB"><strong>- <em>The Vitullos</em></strong></span></div></div>' ;

arrTestimonial[17] = '<div class="PaddingTB"><em>&quot;We were so pleased that we had them come back and do two more     bathrooms.&quot; <br></em></div><div class="TextColor5" align="right"><span class="PaddingTB"><strong>- <em>The Broomes</em></strong></span></div></div>' ; 

arrTestimonial[18] = '<div class="PaddingTB"><em>&quot;They did a phenomenal job.&quot; <br></em></div><div class="TextColor5" align="right"><span class="PaddingTB"><strong>- <em>The Statens</em></strong></span></div></div>' ; 
//-------------------------------------------------

var arrTestimonialLeft = Array() ;

arrTestimonialLeft[0] = '<h6 class="TextColor2"><br>&quot;. . . we would like to   express our sincere appreciation for   making   our bathroom one of the most   beautiful and functional areas   in our   home.&quot;<br> - George   and Shirley S.</h6>' ; 

arrTestimonialLeft[1] = '<h6 class="TextColor2"><br>&quot;I want to compliment your firm on every aspect of its operations .   . .   quality work, on time, with minimal disruption and maximum professionalism.&quot;<br> - <em>Irina C.</h6>' ; 

arrTestimonialLeft[2] = '<h6 class="TextColor2"><br>&quot;We are very satisfied   with our remodeled bathroom and will   recommend   Metro Bath and Tile to others . . .&quot;<br> - Jeffrey S.</h6>' ; 

arrTestimonialLeft[3] = '<h6 class="TextColor2"><br>&quot;We were extremely   pleased with the work performed . . .&quot;<br> - David and Holly W.</h6>' ; 

arrTestimonialLeft[4] = '<h6 class="TextColor2"><br>&quot;You have transformed our 50\'s bathroom into a spectacular, inviting     spa. Thank you so much for your attention to quality detail and quick     turnaround. End result is perfect &amp; functional!&quot;<br> - Tom and Janet R. - Bethesda, MD</h6>' ; 

arrTestimonialLeft[5] = '<h6 class="TextColor2"><br>&quot;Your crew needs to be commended for the professional and courteous     service they provided. The made every attempt to disrupt our household     as little as possible and cleaned up after themselves every   afternoon.&quot;<br> - L. Anderson</h6>' ; 

arrTestimonialLeft[6] = '<h6 class="TextColor2"><br>&quot;We want to thank your staff for helping us plan our new improvement   in   an efficient and painless way.&quot;<br> - W. and R. Barbee</h6>' ; 

arrTestimonialLeft[7] = '<h6 class="TextColor2"><br>&quot;I have had several other firms work on my home. Your firm far   surpassed   any of them. The craftsmanship of the tile work, the   painting, the   attention to detail, and your superior customer service   would lead me to   recommend your firm to anyone.&quot;<br> - I. Clements</h6>' ; 

arrTestimonialLeft[8] = '<h6 class="TextColor2"><br>&quot;I have found the whole experience very satisfying and welcome all     guests to my home to see the excellent craftsmanship.&quot;<br> - C. Wendal</h6>' ; 

arrTestimonialLeft[9] = '<h6 class="TextColor2"><br>&quot;I want to express to you the outstanding work you have done to   remodel   our bathrooms and appreciate the quality of work done by your   friendly   crews.&quot;<br> - G. and P. Matsumura</h6>' ; 

arrTestimonialLeft[10] = '<h6 class="TextColor2"><br>&quot;I love my bathroom! I appreciate your level of professionalism -   you   kept me updated every step of the way. The quality of your work is     excellent and I will not hesitate to recommend Metropolitan Bath   &amp;   Tile.&quot;<br> - J. and J. Barbour</h6>' ; 

arrTestimonialLeft[11] = '<h6 class="TextColor2"><br>&quot;We are very satisfied with our remodeled bathroom and will   recommend   Metro Bath and Tile to others...&quot;<br> - J.D. Sisson</h6>' ; 

arrTestimonialLeft[12] = '<h6 class="TextColor2"><br>&quot;You did an absolutely beautiful job. We were impressed with your   skills   and efficiency. We are enjoying the results of your work every   day.&quot;<br> - M. and B. McLean</h6>' ; 

arrTestimonialLeft[13] = '<h6 class="TextColor2"><br>&quot;I would recommend them to absolutely anyone.&quot;<br> - B. Oswalt</h6>' ; 

arrTestimonialLeft[14] = '<h6 class="TextColor2"><br>&quot;They came in both on time and on budget.&quot;<br> - E. Madan</h6>' ; 

arrTestimonialLeft[15] = '<h6 class="TextColor2"><br>&quot;What I loved about my Metropolitan Bath and Tile job was that they   used   drop cloths and every day they swept up after the job..&quot;<br> - The Lightners</h6>' ; 

arrTestimonialLeft[16] = '<h6 class="TextColor2"><br>&quot;They showed up every day until the job was done.&quot;<br> - The Vitullos</h6>' ;

arrTestimonialLeft[17] = '<h6 class="TextColor2"><br>&quot;We were so pleased that we had them come back and do two more     bathrooms.&quot;<br> - The Broomes</h6>' ; 

arrTestimonialLeft[18] = '<h6 class="TextColor2"><br>&quot;They did a phenomenal job.&quot;<br> - The Statens</h6>' ; 


