You can do a fiddle with the window size, to get it to open full screen with javascript
:
Code:
function fullScreen() {
this.moveTo(0, 0);
this.resizeTo(screen.availWidth, screen.availHeight);
}
// assign custom property to window object
window.maximize = fullScreen;
Then call window.maximize in the body onload.
However, I really don't recommend it. It's not actually forcing the browser to maximize, just open to the full width and height of the screen. As a result, if the user has any sidebars etc then it's going to cover them up.
Another problem is that because a lot of browsers open windows in tabs now, rather than a brand new browser, it's going to force the whole lot to resize. A lot of users will find this intrusive, as you're messing with their settings, they may not have their browser open full for a reason. As a result, if you force it on them then they'll shut the whole lot down.
It's definately opening links from an affiliate site in a new browser window, as if they don't like one particular merchant they can easily go back to your site and try another, rather than "losing" them. Just don't force change of window sizes on them
