		function getaQuote()
		{
			var quote=new Array(5)
			 quote[0]="\"Ernie was very easy to work with with. He is efficient and wasted little time getting us approved!\"<p align='right' style='font-size:15px; color:#FFFFFF; font-weight:900;'>Cam & Antonia Cooke</p>";
			 quote[1]="\"I highly recommend using Ernie Zambri for your next mortgage!\"<p align='right' style='font-size:15px; color:#FFFFFF; font-weight:900;'>Cam and Antonia Cooke</p>";
			 quote[2]="\"He showed me how I could shave off 5 yrs off my mortgage, he offers great advice!\"<p align='right' style='font-size:15px; color:#FFFFFF; font-weight:900;'>Shannon Finn</p>"; 
			 quote[3]="\"Ernie is enthusiastic and passionate about mortgages. He was quite eager to help me improve my situation!\"<p align='right' style='font-size:15px; color:#FFFFFF; font-weight:900;'>Lina Rizzi</p>";
			 quote[4]="\"His integrity and enormous knowledge of the industry has been instrumental in our mortgage!\"<p align='right' style='font-size:15px; color:#FFFFFF; font-weight:900;'>Bill & Maxine Morris</p>";
			 

		  var ranNum= Math.floor(Math.random()*5);//gets random number between 0 and 4

		  document.getElementById("testimonials").innerHTML=quote[ranNum];

		};
        
			function openPopup() {
			url = "joinlist.php?address=";
			url = url + document.joinlist.email.value;
			 window.open(url, "popup_id", "scrollbars,resizable,width=300,height=100");
		}