

// <body onresize=resize() onload=resize()>

function resize()	{
	if (document.all) {W=document.body.clientWidth; H=document.body.clientHeight;} 
	else {W=innerWidth; H=innerHeight; } 
	i=document.images['stretching'];
	if(i) {i.height=H-234; i.width=1;}
}
