// JavaScript Document

function openNewWindow(object, width, height) {
  newWindow = window.open(object, "Flyer", "height="+(height+15)+",width="+(width+15));
  newWindow.focus();
}

function Ventana() {
  alert("Nö, Mann");
}