var newWindow;

function videoPopUp(location,name,w,h,resize,scroll) {


   //var newWindow;
   var scrW = (screen.width/2)-(w/2);
   var scrH = (screen.height/2)-(h/2);

   var atts = 'left=' + scrW + ',top=' + scrH +',width=' + w;
   atts = atts + ',height=' + h + 'channelmode=0,dependent=0,';
   atts = atts + 'directories=0,location=0,menubar=0,';
   atts = atts + 'resizable=' + resize + ',scrollbars=' + scroll;
   atts = atts + ',status=0,toolbar=0';


   newWindow = window.open(location, name, atts);
   
}
