function user_KsGMapItem_makeHTML( data ) {

var html = "";

html = "<div style='text-align:left;width:220px;margin:0' >"
	 + "<table><tr>";
	 
	 

html+= "<td>"
	 + "<div style='font-size: 13px;  font-weight: bold;'>"
	 + "<a href='http://ck.jp.ap.valuecommerce.com/servlet/referral?sid=2509678&pid=877578110&vc_url=" + data["url"] + "' >" + data["name"] + "</a></div>"
	 + "<div style='font-size: 11px; color: #444;'>" + data["address"] + "</div>"
	 + "</td>"
	 


if ( data["photo"] != "") {
	html += "<td style='width:45px'><img src='/lib/thumb.php?path=" + data["photo"] + "&sq=40' alt='' style='border:1px solid #ccc' /></td>";
}	 
	 
html += "</tr></table></div>";

return html;

}