// 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,width=" + width + ",height=" + height ;
  popUpWin = window.open(URLStr, 'popUpWin', attributes);
  //return false;
if(popUpWin==null || typeof(popUpWin)=="undefined"){

alert("Pop-up Blocker Stopped Video");
 } 

}





