
	
	function findMerchants (divName, jspName, voivodeship, city, prefix) {
		// divName to id diva ?
		$('#' + divName).load(prefix+'ajax.dyn', {'jsp':jspName,'voivo':voivodeship,'city':city}, checkAjaxResponse)
			
	}

	function showSubArticle (divName, jspName, artId, prefix) {
		// divName to id diva ?
		$('#' + divName).load(prefix+'ajax.dyn', {'jsp':jspName,'artId':artId}, checkAjaxResponse)
			
	}
	
	
	function checkAjaxResponse(responseText){
		var responseString=responseText;
		if(responseString.length>=13 && responseString.length<=255){
			var re = /\s*<!--\s*__[A-Za-z0-9_\/:.;?#&=]*__\s*-->/;
			if (re.exec(responseString)) {
				var contentString = responseString.replace(/\s*<!--\s*___/i, "");
				contentString = contentString.replace(/\s*___\s*-->/i, "");
				contentString = contentString.replace("amp;", "");
				window.location=contentString;
			}
		}
	}
	
	

