Risolto grazie, mi avete dato buone idee.
codice:
<body>
<div id="container">
<div id="topleft">
[img]topleft.jpg[/img]
</div>
</div>
<div id="bottomright">
</div>
</body>
codice:
* {margin:0;padding:0;}
html, body, #container {height: 100%; background-color: #000;}
body > #container { height: auto; min-height: 100%;}
#topleft { padding-bottom: 500px; } /*altezza immagine*/
#bottomright {
position: relative;
background: #000 url("bottomright.jpg") no-repeat bottom right;
margin-top: -500px; /*altezza immagine negativa*/
height: 500px; /*altezza immagine*/
bottom:0;
right:0;
}