bravo bigdada, nella pagian c'è appunto quell'errore, il div deve stare in mezzo al body della pagina. cmq per un buon metodo più sofisticato è quello di usare javascript e il DOM:

codice:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Untitled Document</title>
<script type="text/javascript">
  function cambiaDimensioniImage() {
    document.getElementById("image").width = screen.width;
    document.getElementById("image").width = screen.height;
  }
</script>
</head>
<body onLoad="cambiaDimensioniImage()">
  [img]untitled.bmp[/img]
</body>
</html>
una racocmandazione: non usate MAI immagini BMP, sono grosse e pesanti da caricare! usate solo JPG o PNG !