<html>
<head>
<title> test background </title>
<style type="text/css">
html {
height: 100%;
}
body {
background-image: url(bg.jpg);
background-position: left;
background-repeat: no-repeat;
background-size: 1024px 768px;
}
</style>
<script>
ScreenWidth = screen.width;
ScreenHeight = screen.height;
/*alert(ScreenWidth+'x'+ScreenHeight);*/
document.write('<style> body {background-size: '+ScreenWidth+'px '+ScreenHeight'px;} </style>');
</script>
</head>
<body>
</body>
</html>
Вот этот кусочек не пашет:
document.write('<style> body {background-size: '+ScreenWidth+'px '+ScreenHeight'px;} </style>');
Подскажите в чем дело.