//<!--
//function corrects stupid IE and gives it min-width and max-width which
//could be easy with CSS...
function minMaxWidth(minWidth,maxWidth) {
	var newWidth = "auto",currentWidth = (document.body.clientWidth + 1) ;
	if ( currentWidth > maxWidth ) {
			newWidth = maxWidth + "px";
	}
	currentWidth = currentWidth - 2;
	if ( currentWidth < minWidth ) {
			newWidth = minWidth + "px";
	}
	return newWidth;
}
// -->

