// JavaScript Document

var popUpWin=0;

function popUpWindow(URLStr, width , height)
{   
  if(popUpWin)
  {
    if(!popUpWin.closed) popUpWin.close();
  }
  
  attributes = "scrollbars=no,resizable=yes,location=no,status=no,toolbar=no,directories=no,menubar=no,width=" + width + ",height=" + height ;
  eval("popUpWin = window.open(URLStr, 'popUpWin', attributes);");
  //return false;
if(popUpWin == null || typeof(popUpWin) == "undefined") {

alert("Your Pop-up Blocker Stopped The Video From Opening\n\nPlease Disable Your Pop-up Blocker To Watch Video\n\nOr Hold Down The Ctrl and Alt While Clicking On The Link");


 } 

}





