function loadAnnouncement ( withDistributions, lang, id, whereShow, hashedLinks, linkToHash, count ) {
	

	if (!hashedLinks) {
		hashedLinks = false;
	}
	if (!linkToHash) {
		linkToHash = '';
	}
	var link = "http://restec.ru/news/ann-custom/"  + lang + "/" + id + ".html";
	
	$.ajax({
		'url': link
		, 'data':{
			'count' : count
			, 'withDistributions' : withDistributions
			, "hashedLinks": hashedLinks
			, "linkToHash":linkToHash	
		}
		, 'dataType':'jsonp'
		, 'cache': false
		, 'success':function (data) {
			$(whereShow).html( data.value );
		}
	} );
}
