Hello!
i created a simple popup window
using this script
function MyPopUp(c) {
window.open(c,
'window',
'width=480,height=480,scrollbars=yes,status=yes');
}
which works
but is it possible to modify the size according to the browser with?
like
if (screen.width == 1024 size ""
if (screen.width == 1280 size ""
Thanks!