function popup_video_size() {
$( '.popup_video' ).each(function() {
var current_iframe_width = $(this).width();
var new_height = current_iframe_width*9/16;
$(this).height(new_height);
});
}
popup_video_size();
$( window ).resize(function() {
popup_video_size();
});