WASHINGTON – The site of the alleged Israeli strike
in Syria
last week was the country’s main biological and chemical weapons research center, the New York Times reported Monday.
Citing “senior US security sources,” the newspaper said that the center had known ties to a North Korean research center of the same kind.
Related stories:
- Assad: Strike aimed at destabilizing Syria
Lebanese FM calls for boycott of Israel
- Syria, Iran threaten retaliation against Israel
Various foreign security officials hedged that IAF
jets hit a convoy of SA-17
anti-aircraft missiles traveling towards the Lebanese border, ahead of a handoff to Hezbollah
militants.
![]() ![]() |
| Site of the alleged strike |
res.push(‘ ‘);
res.push(”);
res.push(‘
res.push(‘
‘);res.push(‘סגור‘);
res.push(‘
‘);res.push(‘מזער‘);
res.push(‘
‘);
res.push(”);
this.lb.find(‘#hp_player_video_header’).html(res.join(”));
this.lb.find(‘#hp_player_video_header .hp_player_video_close’).click(function(e){
_this.closePlayer();
});
};
HomepagePlayer.prototype.closePlayer = function(){
this.lightBox.hide();
this.explorerFix();
yq(‘#’+this.getVideoContainerId()).css({visibility:’hidden’});
};
HomepagePlayer.prototype.initFooter = function(videoData){
var _this = this;
var res = [];
res.push(‘
var videos_length = _this.videos.length;
for (var i = 0; i ‘);
if (!this.hideFooter) {
this.lb.find(‘#hp_player_video_footer’).show().find(‘#hp_player_video_footer_inner’).html(res.join(”));
} else {
this.lb.find(‘#hp_player_video_footer’).hide();
}
};
HomepagePlayer.prototype.addVideos = function(videos, index){
if (index != undefined) {
if (!videos.length) {
videos.index = index;
this.videos[index] = videos;
}
} else {
for (var index = 0; index 19 ? title.substr(0,18) + ‘…’ : title;
var htmlStr = [
'
'
'
'',
'',
'
',
'
'].join(”);
if(index
‘;
};
return htmlStr;
};
HomepagePlayer.prototype.enlargeThumbnail = function(thumbnail){
thumbnail = yq(thumbnail);
var img = thumbnail.find(‘.hp_player_thumbnail_img’);
var overlay = img.find(‘.hp_player_thumbnail_overlay’);
var shade = thumbnail.find(‘.hp_player_thumbnail_shade_on’);
if (true) {
var animate = ‘css’;
var fadeIn = ‘show’;
var fadeOut = ‘hide’;
var duration = undefined;
} else {
var animate = ‘animate’;
var fadeIn = ‘fadeIn’;
var fadeOut = ‘fadeOut’;
var duration = 200;
}
// Give a higher z-index to current thumbnail
thumbnail.css(‘z-index’, 10);
// Undim the thumbnail
shade.hide();
// Show the text overlay
overlay.stop(true)[animate]({
top: -20
}, duration);
// Draw border
img.addClass(‘hp_player_thumbnail_enlarged’);
// Enlarge the thumbnail
img[animate]({
width: 120,
height: 90,
top: -((90 – 65) / 2),
right: -((120 – 87) / 2)
}, 150);
};
HomepagePlayer.prototype.resetThumbnail = function(thumbnail){
thumbnail = yq(thumbnail);
var img = yq(thumbnail).find(‘.hp_player_thumbnail_img’);
var overlay = img.find(‘.hp_player_thumbnail_overlay’);
var shade = thumbnail.find(‘.hp_player_thumbnail_shade_on’);
if(true) {
var animate = ‘css’;
var fadeIn = ‘show’;
var fadeOut = ‘hide’;
var duration = undefined;
} else {
var animate = ‘animate’;
var fadeIn = ‘fadeIn’;
var fadeOut = ‘fadeOut’;
var duration = 200;
}
// Hide the text overlay
overlay.stop(true)[animate]({
top: 0
}, duration);
// Shrink the thumbnail
img.css({
width: 87,
height: 65,
top: 0,
right: 0
});
// Dim the thumbnail
shade.css(‘filter’, ‘alpha(opacity=70.0)’)[fadeIn]();
// Remove border
img.removeClass(‘hp_player_thumbnail_enlarged’);
// Reset z-index
thumbnail.css(‘z-index’, 1);
};
HomepagePlayer.prototype.animateThumbnailIe = function(target, duration, callback){
this.css(target);
if(typeof callback == ‘function’){callback()};
};
/********************************************************/
/*************** LightBox object *****************/
window.LightBox = function(_resize) {
this.resize = _resize;
this.init();
};
LightBox.prototype.init = function() {
this.overlay = yq(”);
this.content = yq(”);
yq(‘body’).append(this.overlay);
yq(‘body’).append(this.content);
if(document.all){
this.overlay.css({
‘position’: ‘absolute’
});
this.content.css({
‘position’: ‘absolute’
});
};
var _this = this;
yq(window)
.resize(function(){_this.updatePosition();})
.scroll(function(){_this.updatePosition();});
};
LightBox.prototype.show = function(videoHeight, onAfterShow) {
var _this = this;
if (typeof(window.pageRefreshDisable)==’function’){
window.pageRefreshDisable();
};
// hide all iframes to prevent flash objects from showing through
yq(‘iframe’).css(‘visibility’, ‘hidden’);
// External reszie function makes the necessary adjustements so the lightbox fits the screen
if(typeof this.resize == ‘function’){this.resize(this.getOverflow(), videoHeight);};
// Update lightbox position according to lightbox and window size
this.updatePosition();
// Show the lightbox
this.overlay.css(‘filter’, ‘alpha(opacity=70)’).fadeIn(function(){
setTimeout(function(){
_this.content.fadeIn(‘slow’,function(){
if(typeof onAfterShow == ‘function’){onAfterShow();};
});
}, 200);
});
return this;
};
LightBox.prototype.hide = function(callback) {
if (typeof(window.pageRefreshEnable)==’function’){
window.pageRefreshEnable();
};
this.content.hide();
this.overlay.fadeOut(‘slow’);
// bring iframes back
yq(‘iframe’).css(‘visibility’, ‘visible’);
if(typeof callback == ‘function’){callback();};
return this;
};
LightBox.prototype.html = function(html) {
this.content.html(html);
this.fullHeight = this.content.height();
return this;
};
LightBox.prototype.visible = function() {
return this.content.is(‘:visible’);
};
LightBox.prototype.updatePosition = function() {
var position = this.getPosition();
this.content.css({
‘left’: position.left + ‘px’,
‘top’: position.top + ‘px’
});
this.overlay.css({
‘margin-top’: position.marginTop + ‘px’
});
if(document.all){
this.overlay.height(yq(window).height());
};
};
LightBox.prototype.getPosition = function() {
var w = yq(window);
var left = (w.width() / 2) – (this.content.width() / 2);
var top = (w.height() / 2) – (this.content.height() / 2);
var marginTop = 0;
if(document.all){
top += document.body.scrollTop;
marginTop = document.body.scrollTop;
};
return {
left: left,
top: top > 0 ? top : 0,
marginTop: marginTop
};
};
LightBox.prototype.getOverflow = function(videoData){
var heightOverflow = this.fullHeight – yq(window).height();
return heightOverflow > 0? heightOverflow : 0;
};
/********************************************************/
if (typeof openWin != ‘function’ || typeof openInnewWindow != ‘function’) {
window.MSIE_VER = function() {agt=navigator.userAgent.toLowerCase();pos=agt.indexOf(‘msie’)+1;if(pos)return agt.charAt(pos+4);return 0};
window.openWin = function(url,title,attrib) {wref=window.open(url,title,attrib);if(MSIE_VER()>=5)wref.focus()};
window.openInnewWindow = function(url,width,height,toolbar) {if(toolbar==1) {openWin(url,’Ynet’,'toolbar=yes,location=yes,directories=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes,width=’+width+’,height=’+height)} else {openWin(url,’Ynet’,'toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=no,movable=yes,resizable=yes,width=’+width+’,height=’+height)}};
};
})();
Israel
has remained mum on the matter, but Defense Minister Ehud Barak,
in a first – albeit ambiguous – comment by an Israeli official, said Sunday that while he could not directly comment on the foreign reports insisting Israel was responsible, “When we say something, we mean it… we said that we don’t think it should be allowed to bring advanced weapons systems into Lebanon,
to Hezbollah, from Syria when Assad falls.”
Syria denied the attack at first, but eventually admitted it was hit, allowing its state-run television station to air a video
showing that a research center north of Damascus was damaged.
According to the NYT, the Syrian Scientific Studies and Research Center, “Has been the target of American and Western sanctions for more than a decade because of intelligence suggesting that it was the training site for engineers who worked on chemical and biological weaponry.”
Several US security sources said that Jerusalem had informed Washington of the impending strike. A senior US military official said that “the Israelis had a small strike package,” meaning, according to the NYT, that “a relatively few fighter aircraft slipped past Syria’s air defenses and targeted both the missiles and the research center.”
“They clearly went after the air defense weapons on the transport trucks,” the American official said.
Security experts said that the ease with which Israeli planes reached the Syrian capital was most likely also meant to send a message to Assad, as well as to Iran
– a known sponsor of both the regime in Syria and the Shiite terror group.
“Israel has said that if it saw chemical weapons on the move, it would act to stop them. By hitting the research center, part of a military complex that is supposed to be protected by Russian-made antiaircraft defenses, Israel made it clear it was willing to risk direct intervention to keep weapons and missiles out of Hezbollah’s hands,” the New York Times said.
It is believed that the alleged Israeli strike in Syrian was also meant to signal to the Islamic Republic that Israel would be willing – and is capable – of carrying out a similar strike on Tehran’s nuclear facilities if it seemed that Iran was near achieving nuclear weapons capability.
- Receive Ynetnews updates
directly to your desktop
Report: Site of Syria strike was main chemical research hub – Ynetnews
Read more…


