function video_open(theURL,winName,features,wx,wy) { //v2.0
  x=(screen.width-wx)/2;
  y=(screen.height-wy)/2;
  features = features + ",top="+y+",left="+x;
  window.open(theURL,winName,features);
}
