function addPoint(url,x,y,title,description)
{
	var point = new GLatLng(x,y);
	var marker = new GMarker(point);
	map.addOverlay(marker);
	//var options = new GInfoWindowOptions();
	//options.maxWidth=150;
	var html = '<a class="infoPanel" href="' + url + '">' + title + '</a>';
	//html += '<br /><a href="' + url + '" class="infoPanelURL">' + url + '</a>';
	html += '<br /><span class="descriptionText">' + description + '</span>';
	marker.html = html;
	GEvent.addListener(marker, "click", function() {
    	marker.openInfoWindowHtml(html,{maxWidth:310});
	});
	markers[url] = marker;
}

function showSite(url)
{
	var marker = markers[url];
	marker.openInfoWindowHtml(marker.html,{maxWidth:310});
}