function changeimage(imgName,thesrc) {
	base = "/images/interior/buttons/";
	document [imgName].src = base + thesrc;

}


function OpenMap() {
	var W=700;
	var H=460;

	var X=(screen.availWidth/2)-(W/2);
	var Y=(screen.availHeight/4)-(H/2);
	if (Y<0) Y=0;

	var ImgWindow = window.open("","popWindow","screenX="+X+",screenY="+Y+",left="+X+",top="+Y+",innerWidth="+W+",width="+W+",innerHeight="+H+",height="+H+",dependent=0,directories=0,location=0,menubar=0,personalbar=0,resizable=1,scrollbars=0,status=0,titlebar=0,toolbar=0");
	ImgWindow.document.writeln('<html><body marginwidth="0" marginheight="0" leftmargin="0" topmargin="0" style="font-family:arial; font-size:13px; background-color:#edeae2">');
	ImgWindow.document.writeln('<div style="border-bottom:1px solid #87844d; padding-bottom:10px;"><iframe width="700" height="400" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.com/maps?f=q&amp;hl=en&amp;geocode=&amp;time=&amp;date=&amp;ttype=&amp;q=2521+Technology+Dr+Ste+208,+Elgin,+IL+60124&amp;sll=38.865909,-77.062762&amp;sspn=0.011394,0.022531&amp;ie=UTF8&amp;z=14&amp;iwloc=addr&amp;om=1&amp;ll=42.099178,-88.335829&amp;output=embed&amp;s=AARTsJpyKN3TaeI_CPdPEKv4RM6W9xRBMQ"></iframe><br /><small><a href="http://maps.google.com/maps?f=q&amp;hl=en&amp;geocode=&amp;time=&amp;date=&amp;ttype=&amp;q=2521+Technology+Dr+Ste+208,+Elgin,+IL+60124&amp;sll=38.865909,-77.062762&amp;sspn=0.011394,0.022531&amp;ie=UTF8&amp;z=14&amp;iwloc=addr&amp;om=1&amp;ll=42.099178,-88.335829&amp;source=embed" style="color:#0000FF;text-align:left">View Larger Map</a></small></div>');
	ImgWindow.document.writeln('<p align="center" style="margin:10px 0px 10px 0px;"><a href="javascript:self.close();" style="font-size:11px; font-weight:bold; text-decoration:none;">CLOSE</a></p>');
	ImgWindow.document.writeln('</body></html>');
	ImgWindow.document.close();
	ImgWindow.focus();
}