Centering Pop-Up?
Centering Pop-Up?
Out of context: Reply #13
- Started
- Last post
- 13 Responses
- mikeim0
SCRIPT LANGUAGE="JavaScript"
function openWindow(width,height,name) {
x = (300 - width)/2, y = (400 - height)/2;if (screen) {
y = (screen.availHeight - height)/2;
x = (screen.availWidth - width)/2;
}
if (screen.availWidth > 1800) {
x = ((screen.availWidth/2) - width)/2;
}window.open(name,'name','status...
}
/SCRIPT
now take that back...