Forum Moderators: open
The window will contain information that i want to display.It dosnt require a normal 800x600 window to open. I just want a 1/4 size of 800x600 etc. Is this possible and if so how.
I havnt done this before
Thanks
<script type="text/javascript">
function wopen(url,popupname,attributes){
win = window.open(url,popupname,attributes);
win.focus();
}
Place the above into the <head> of your document. The link then should look like this:
<a href="#" onMouseUp="wopen('popup.html','popupname','width=400,height=300');">link</a>