﻿/* Opens popup window  */
function opener(page) {
    window.open(page, "popup", "location=no,menubar=no,resizable=no,width=550,height=580,scrollbars=yes");
}

/* Opens popup window */
function NewWindow(mypage, myname, w, h, scroll) {
    var winl = (screen.width - w) / 2;
    var wint = (screen.height - h) / 2;
    winprops = 'height=' + h + ',width=' + w + ',top=' + wint + ',left=' + winl + ',scrollbars=' + scroll + ',resizable'
    win = window.open(mypage, myname, winprops)
    if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}


// Added 1/19 PW
function loadVideo(sLink){
  $('#popupWrapper').show();
  
  //var sUrl = sLink + '?autoplay=1';
  
  $('#vcontainer').html('<iframe class="videoFrame" width="560" height="315" src="' + sLink + '" frameborder="0" allowfullscreen></iframe>');
}

function closeVideoPopup(){
  $('#popupWrapper').hide();
  $('#vcontainer').html('');
}
