Popup Windows
Popup Windows
Out of context: Reply #2
- Started
- Last post
- 3 Responses
- fugged0
function resizeWin(w,h){
w2 = w+0;
h2 = h+0;
if (parseInt(navigator.appVersion)>... {
if (navigator.appName=="Netscape") {
top.outerWidth=w2;
top.outerHeight=h2;
}
else top.resizeTo(w2,h2);
}if (parseInt(navigator.appVersion) >= 4) window.moveTo((screen.width/2...
}In your IMG tag in HTML define an onLoad event as:
onLoad="resizeWin(this.width,thi...