// 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 ;
  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 Open Player Window");
 } 

}





