Forum Moderators: not2easy
You may want to consider using background-attachment:fixed which will solve your problem in a way, but will also give a kind of strange effect when scrolling.
Otherwise there's the option of editing the background image with a image editor so that it can repeat itself tiled without looking bad (gradient the top to the bottom and the bottom to the top - if vertically tiled))
function picshow(nm) {
iw = screen.width-20;
if (screen.width<800) iw=780;
ih = (589/824)*iw;
document.write('<DIV id="Layer1" style="position:absolute; left:0px; top:0px; width:'+iw+'px; height:'+ih+'px; z-index:0"><IMG src="'+nm+'" width="'+iw+'" height="'+ih+'"></DIV>');
}
Hope it helps.