<?php
$map['Labels'][0]="none";
$map['extramap'] = "";
$map['infowindows'][0]="''
+'<div style=\"width:200px\"><center><a href=\"'+itemLink+'\">'+title+'</a><br/>'
+'<a href=\"'+itemLink+'\"><img src=\"'+thumbLink+'\" width=\"'+thw+'\" height=\"'+thh+'\" alt=\"'+title+'\" style=\"max-width:200px;max-height:200px;\"/></a>'
+'<br/><font color=black><b>".$module->translate("Date:")."</b> '+created+'</font>'";
if ($map['showItemSummaries']) {
$map['infowindows'][0]=$map['infowindows'][0]."
+(summary!=\"\"?'<br/><br/><div style=\"width:200px\"><font color=black>'+summary+'</font></div>':'')";
}
if ($map['showItemDescriptions']) {
$map['infowindows'][0]=$map['infowindows'][0]."
+(description!=\"\"?'<br/><br/><div style=\"width:200px\"><font color=black>'+description+'</font></div>':'')";
}
if ($map['showZoomLinks']){
$map['infowindows'][0]=$map['infowindows'][0]."
+'<br/><br/><a href=\"#zoominlink\" onclick=\"javascript:map.setCenter(new GLatLng('+lat+','+lon+'), '+zoomlevel+'); return false;\">".$module->translate("Zoom In")."</a>'";
}
$map['infowindows'][0]=$map['infowindows'][0]."
+'</div></center>'";
?>