function imgDisabled () {
	obj = getObj( "imgDirectLogo" );
	if ( isIE && obj && obj.readyState == "uninitialized" ) {
		obj.style.width = 0;
		obj.style.height = 0;
	}
}

addEvent( "onload", imgDisabled );
