uso la tecnica delle expression per ottenere un min-width anche su ie6, tecica che funziona benissimo per l'header non per il footer.
codice:
#footer {
	width:auto;
	min-width:850px;
	height:30px;
	border-top:1px solid #940394;
	border-bottom:1px solid #940394;
	line-height:30px;
	color:#ffffff;
	text-align:center;
	margin-top:15px;
	clear:both;
	background-image:url(Immagini/bgfooter.png);
}
codice:
<!--[if lt IE 7]>
<style type="text/css">
#footer {
   background-image:url(Immagini/bg100.gif);
   filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src="Immagini/bgfooter.png", sizingMethod="scale");
   width:expression(document.body.clientWidth < 850 ? "850px": "100%" );
}
html,body{
background-attachment:scroll;
}
</style>
<![endif]-->
qualcuno sa spiegarmene il motivo?

Grazie
Luca