//=====================================================================||
//                      Javascript Window Popup                 	   ||
//=====================================================================||

function popup(theURL) {
  var winl = (screen.width / 2) - 150;
  var wint = (screen.height / 2) - 150;
  window.open('popups/'+theURL,'Popup','width=300,height=300,top='+wint+',left='+winl+',resizable=0');
}
function popupWide(theURL) {
  var winl = (screen.width / 2) - 300;
  var wint = (screen.height / 2) - 150;
  window.open('popups/'+theURL,'Popup','width=600,height=300,top='+wint+',left='+winl+',resizable=0');
}
function popupVideo(theURL) {
  var winl = (screen.width / 2) - 200;
  var wint = (screen.height / 2) - 170;
  window.open('popups/'+theURL,'Popup','width=400,height=340,top='+wint+',left='+winl+',resizable=0');
}
