Click opens new window every time

It sounds like you want to open a new window every time you click on something. That's a great feature!

To achieve this, you can use a combination of HTML, CSS, and JavaScript. Here's a basic example to get you started:

HTML:

<a rel="nofollow" target="_blank" href="#" onclick="openNewWindow()">Click me!</a>

JavaScript:

function openNewWindow() {
  window.open("", "_blank"); // opens a new window
}

CSS:

/* Optional: style the new window */
.new-window {
  width: 500px;
  height: 300px;
  border: 1px solid #ccc;
  padding: 20px;
}

Here's how it works:

  1. The HTML anchor tag has an onclick attribute that calls the openNewWindow() function when clicked.
  2. The JavaScript function openNewWindow() uses the window.open() method to open a new window. The _blank parameter specifies that the new window should be opened in a new tab or window.
  3. You can customize the appearance of the new window by adding CSS styles to the .new-window class.

Note that this code will open a new window every time you click the link. If you want to open a new window only once, you'll need to modify the code to check if a new window has already been opened.