Well, you could try setting the link properties:


function Maximize()
{
window.innerWidth = screen.width;
window.innerHeight = screen.height;
window.screenX = 0;
window.screenY = 0;
alwaysLowered = false;
}
<A HREF="javascript: onClick=Maximize()">Link</A>

or, set the properties manually:

function newWindow(bookgif){
bookWindow=window.open(bookgif,
'bookwin', 'width=800,height=600')
bookWindow.focus() }


<A href="javascript:newWindow('abc.html')">