function showLocales(){
	var html="<table width=630 cellpadding=0 cellspacing=0 border=0 style=\"table-layout:fixed;\">";
	html+="<col width=100><col width=350><col width=170>";
	var cFormato=-1;
	for (var i=0;i<locales.length;i++){
		if (cFormato!=locales[i][1]){
			cFormato=locales[i][1];
			html+="<tr align=left>";
			html+="<td>";
			if(locales[i][2]!=""){html+="<img src=\"/store/formatos/"+locales[i][1]+"/"+locales[i][2]+"\" border=0>";};
			html+="</td>";
			html+="<td class=locales_titulo>Tienda:</td><td class=locales_titulo>Distrito</td></tr>";
			html+="<tr height=1><td height=1></td><td height=1 bgcolor=\"#202020\" colspan=2></td></tr>";
		};
		html+="<tr align=left>";
		html+="<td></td>";
		html+="<td class=locales_linea><b>"+locales[i][4];
		//html+="</b>&nbsp; <span title=\"pulse aquí para ver el mapa de ubicación de este local...\" class=verMapa onclick=\"viewMap('"+locales[i][0]+"','"+i+"');\">[ver mapa]</span>";
		html+="</td>";
		html+="<td class=locales_linea>"+locales[i][3]+"</td>";
		html+="</tr>";
	}
	html+="</table>"
	document.write(html);html=null;
};
function viewMap(idLocal,index){
	if(locales[index][6]==""){return;};
	window.open("/popup/vermapa.asp?file="+locales[index][6]+"&idLocal="+idLocal,"_blank","directories=no,height=400,width=320,titlebar=no,status=no,scrollbars=no,menubar=no");
};
