not directly....
the browser does not send the size of the window allong with the request...
you could however make javascript trigger an onResize() handler: this could
1) set the document.form.myFormName.inputName.value = 'the windows size'
2) document.form.myFormName.submit()
this would reload the page an pass it the size of the window...
this however is stupid... so don't do it.. but you can
you could also use the image trick...
have a php scripts that returns an image not an html document...
have javascript load into an image on the page
yoursite/image.php?winHeight=100&winwidth=200
the image it returns could then have some information in it that you could have javascript read, then react to the page....