function showAbsolute(){
	document.getElementById("SfondoBottom_SX").style.display='block';
	document.getElementById("SfondoBottom_DX").style.display='block';
	document.getElementById("tools").style.display='block';
}
	
window.addEvent('domready', function() {
	temp=navigator.appVersion.split('MSIE');
	// Parse the string for the "6" in 6.0
	ieVer=parseInt(temp[1]);
	// Is it greater than 6?
	var isIE6up=(ieVer <= 6)?1:0;
	// Display logo
	if (isIE6up) showAbsolute();
});	

	
	
	
