function getContactInfo() {
	con = document.createElement('div');
	imgT = document.createElement('img');
	br = document.createElement('br');
	p = document.createElement('p');
	imgT.setAttribute("id","imgTitle");
	imgT.setAttribute("src","Images/66_ContactUs.gif");
	con.appendChild(imgT);
	txt1 = document.createTextNode("7027 Dublin Blvd.");
	txt2 = document.createTextNode("Suite 621");
	txt3 = document.createTextNode("Dublin, CA 94568");
	p.appendChild(txt1);
	p.appendChild(br);
	p.appendChild(txt2);
	p.appendChild(br);
	p.appendChild(txt3);
	con.appendChild(p);
	
	return con;
}