var videoWindow = null;

function openVideo( src, width, height ) {
  if (videoWindow) { videoWindow.close() }
  videoWindow = window.open(src,'movie','width='+width+',height='+height+',resizable=no','dependent=yes','scrollbars=no','status=no','menubar=no','directories=no','location=no');
  if (window.focus) { videoWindow.focus() }
  return false;
}

function openWindow( src, width, height ) {
  if (videoWindow) { videoWindow.close() }
  videoWindow = window.open(src,'window','width='+width+',height='+height+',resizable=no,scrollbars=yes,dependent=yes,status=no,menubar=no,directories=no,location=no');
  if (window.focus) { videoWindow.focus() }
  return false;
}

function removeNag() {
  objects = document.getElementsByTagName("object");
  for (var i = 0; i < objects.length; i++) {
    objects[i].outerHTML = objects[i].outerHTML;
  }
}
