<html>
<head>
<script>
function getSize(){
document.getElementById('inp_width').value = window.innerWidth;
document.getElementById('form_size').submit();
}
</script>
</head>
<body onload='getSize()'>
<form method='post' id='form_size'>
<input type='hidden' name='width' id='inp_width'/>
</form>
</body>
</html>