<!-- Ссылки -->
<a href="#" id="https://www.youtube.com/embed/aaaaaaaa1" onclick="$('#show_video_window').arcticmodal();">Посмотреть видео 1</a>
<a href="#" id="https://www.youtube.com/embed/aaaaaaaa2" onclick="$('#show_video_window').arcticmodal();">Посмотреть видео 2</a>
<!-- Модальное окно -->
<div style="display:none;">
<div class="box-modal" id="show_video_window">
<!-- src должно меняться, в зависимости от id -->
<iframe width="480" height="360" src="https://www.youtube.com/embed/xFa2_PVMeDQ"></iframe>
</div>
</div>
$('a').click(function(e) {
e.preventDefault();
$('.box-modal').find('iframe').attr('src', $(this).data('url'));
$('.box-modal').parent().show();
});
<!-- Ссылки -->
<a href="#" id="https://www.youtube.com/embed/aaaaaaaa1" onclick="$('#video_frame').attr('src',this.src);$('#show_video_window').arcticmodal();">Посмотреть видео 1</a>
<a href="#" id="https://www.youtube.com/embed/aaaaaaaa2" onclick="$('#video_frame').attr('src',this.src);$('#show_video_window').arcticmodal();">Посмотреть видео 2</a>
<!-- Модальное окно -->
<div style="display:none;">
<div class="box-modal" id="show_video_window">
<!-- src должно меняться, в зависимости от id -->
<iframe id="video_frame" width="480" height="360" src="https://www.youtube.com/embed/xFa2_PVMeDQ"></iframe>
</div>
</div>
<!-- Ссылки -->
<a href="https://www.youtube.com/embed/aaaaaaaa1" target="videoframe" onclick="$('#show_video_window').arcticmodal();">Посмотреть видео 1</a>
<a href="https://www.youtube.com/embed/aaaaaaaa2" target="videoframe" onclick="$('#show_video_window').arcticmodal();">Посмотреть видео 2</a>
<!-- Модальное окно -->
<div style="display:none;">
<div class="box-modal" id="show_video_window">
<iframe width="480" height="360" name="videoframe"></iframe>
</div>
</div>