“Helmut Newton: The Bad and the Beautiful”
Once fashionable fashion photographer on film
“As a woman, I find your photos very misogynous,” says Susan Sontag to Helmut Newton. The photographer replies that he loves women. Sontag doesn’t buy it. “A lot of misogynous men say they love women, but show them in a humiliating way.”
= new YT.Player(pid, {
events: {
'onReady': function(e){
e.target.mute();
e.target.playVideo();
}
}
});
// Mute / Unmute Logic
jQuery('.alco-yt-mute-btn[data-yt-id="alco_yt_340054"]').on('click', function(){
var player = window.alcoYTPlayers[pid];
if (!player) return;
try {
var isMuted = player.isMuted();
if (isMuted) {
player.unMute();
jQuery(this).text('🔊');
} else {
player.mute();
jQuery(this).text('🔇');
}
} catch(err){}
});
// Click on video → Learn More
jQuery('#alco_yt_340054').on('click', function(){
var link = jQuery('.alco-learn-more[data-ad-id="340054"]').attr('href');
if(link){
window.open(link, '_blank');
}
});
}
alcoInitYT_340054();