function show_map (map,name,address,city,x,y) {	wdth = x + 50;	hght = y + 120;	str = "toolbar=no,location=no,scrollbars=yes,width="+wdth+",height="+hght;	newWindow = window.open("", "newWin", str);	newWindow.document.write("<html>");	newWindow.document.write("<head>");	newWindow.document.write('<link rel="stylesheet" href= styles.css type="text/css">');	newWindow.document.write("<\/head>");	newWindow.document.write("<body bgcolor='#FFFFFF'>");	newWindow.document.write('<table width="100%">');	newWindow.document.write('<tr><td class="map">');		newWindow.document.write(name);	newWindow.document.write('</td></tr>');	newWindow.document.write('<tr><td class="map">');		newWindow.document.write(address);	newWindow.document.write('</td></tr>');	newWindow.document.write('<tr><td class="map">');		newWindow.document.write(city);	newWindow.document.write('</td></tr>');	newWindow.document.write('<tr><td class="centered">');	newWindow.document.write('<img src="images/'+map);	newWindow.document.write('" align="middle"');	newWindow.document.write(' style="border: 0px solid;">');	newWindow.document.write('</td></tr>');	newWindow.document.write('</table>');	newWindow.document.write("<\/body>");	newWindow.document.write("<\/html>");	newWindow.document.close();		// make sure this window is in front so it can be seen	newWindow.focus();	return false;}