function GetCalendar(property, NoOfMonths, TemplateName)
{



jq13.getJSON("http://evelyncrescent.co.uk/availability/BookingsJson?highlightCategory="+property+"&monthAhead="+NoOfMonths+"&TemplateName="+TemplateName+"&callback=?",
		function(data) {
		    jq13('div#name').html(data.html);
		    var fileref = document.createElement("link");
		    fileref.setAttribute("rel", "stylesheet");
		    fileref.setAttribute("type", "text/css");
		    fileref.setAttribute("href", data.style);
		    document.getElementsByTagName("head")[0].appendChild(fileref);
		    jq13('div#time').html('real-time availability fetched at '+data.serverTime);
		})
}
