		function getaQuote()

		{

			var quote=new Array(5)

			 quote[0]="\"Alex showed us exactly what we needed. He put us on a plan that ended up saving us $1700 per month!\"<p align='right' style='font-size:15px; color:#FFFFFF; font-weight:900;'>Bill & Andrea, Aurora</p>";

			 quote[1]="\"Alex was able to find the perfect mortgage for our needs, now we are enjoying our first home thanks to him!\"<p align='right' style='font-size:15px; color:#FFFFFF; font-weight:900;'>Danielle & Eric, Newmarket</p>";

			 quote[2]="\"I was about to give up until I called Alex. He showed me how to qualify for my home with as little as 5% down!\"<p align='right' style='font-size:15px; color:#FFFFFF; font-weight:900;'>Jean, Richmond Hill</p>"; 

			 quote[3]="\"He really took the anxiety out of home buying, I would definitely refer him to anyone looking for the same!\"<p align='right' style='font-size:15px; color:#FFFFFF; font-weight:900;'>Jean, Richmond Hill</p>";



		  var ranNum= Math.floor(Math.random()*4);//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");

		}