// JavaScript Document

window.onresize=function()
{
	var img=document.getElementById('bg');
	img.style.display='none';
	var docheight=document.body.scrollHeight;
	img.style.height=docheight;
	img.style.display='block';
}