function loadAdZoneScriptFromUrl(url, divId, zoneId, theaterId, locale, orientationId) {
	$.ajax({
		async: true,
        url: url,
        dataType: "text",
        data: {
			zoneId:zoneId,
			theaterId:theaterId,
            locale:locale,
            genreId:orientationId
		},
		type: "GET",
		success: function (data, textStatus) {
            $("#"+divId).html(data);
		}
	});
}

