//<!--

function createGeourlMarker(markmap, marklat, marklong, imgSrc, price, priceprefix, beds, type, address, desc, url) 
{
	var point = new GPoint(marklong, marklat);
  	var icon = new GIcon(geourlIcon);
  	var marker = new GMarker(point, icon);
  	var html = '<div style="width:330px;height:121px;border:1px solid #666666;">';
	
	html += '<div style="float:left;width:135px;height:100px;margin:10px 0 0 10px;"><img src="' + imgSrc + '" width="135" height="100" title=""></div>';
	html += '<div style="float:left;width:168px;height:100px;margin:10px 10px 10px 5px;">';
	html += '<span class="resultItem1"><span style="font-weight:bold;">&pound;' + price + '</span> <span style="font-size: 0.8em;">' + priceprefix + '</span></span>';
	html += '<span class="resultItem2">' + beds + ' bed - ' + type + '<br />';
	html += address + '</span>';
	html += '<span class="resultItem3">' + desc + '...<a href="' + url + '">more</a></span>';
	html += '</div>';
	html += '</div>';

  	GEvent.addListener(marker, "click", function() 
  	{
    	marker.openInfoWindowHtml(html);
  	});
  	GEvent.addListener(marker,"mouseover", function() 
  	{
   		marker.openInfoWindowHtml(html);
  	}); 
	markmap.addOverlay(marker);
}

//-->