/*******Popup Window*******/
function pu_gallery(url)
{
var width = 720;
var height = 480;
var win_left = (screen.width-width)/3;
var win_top = (screen.height-height)/3;
new_window = window.open(url,'video_player_popup','width='+width+',height='+height+',top='+win_top+',left='+win_left+',toolbar=no,directories=no,status=no,scrollbars=yes,resizable=yes');
if (window.focus)
{
new_window.focus()
}
}
$(document).ready(function(){
$("a.gallery-popup").attr("href", function() { return "javascript:pu_gallery('"+this.href+"');" });
});