function newWindow(link) {

  var bookWindow;

  // Next two lines should be on one line

  bookWindow = window.open(link, "new1", "width=400,height=350,scrollbars,resizable");

  if (bookWindow.open) {

    bookWindow.close;

  }

  bookWindow.focus();

}

function valueVideoWindow(link) {

  var bookWindow;

  // Next two lines should be on one line

  bookWindow = window.open(link, "new1", "width=500,height=400,resizable");

  if (bookWindow.open) {

    bookWindow.close;

  }

  bookWindow.focus();

}





