<html>

<script language="JavaScript1.2">

function ff() {
alert(document.body.clientWidth);
resizeTo(document.body.clientWidth,document.body.clientHeight);
}
</script>

<body>

<p align="center">
<input type="button" value="Check" onClick="ff(); return false">
</body>

</html>