<html> <head> <script> function licz() { var height = screen.height; var width = screen.width; document.getElementById('a').innerHTML += width+"X"+height; document.getElementById('a').style.height = height; document.getElementById('a').style.width = width; } </script> </head> <body onload="licz();" style="margin:0;"> <div id="a" style="background-color:pink;"> </div> </body> </html>