[color:c957=#fff].
[color:c957=#fff].
[color=#fff].[color=#fff].[color:c957=#fff].
[color:c957=white:c957]__,_._,___ [color:c957=#fff].
[color:c957=#fff].
[color:c957=white:c957]__,_._,___
var callCount = ((oBw.agt.match( /gecko/ ) == "gecko"))? 0 : 50;
function rmvScroll( msg )
{
if ( ++callCount > 10 ) { msg.style.visibility = "visible"; }
if ( callCount < 50 && ! imgsDone( msg ) ) {
setTimeout( function() { rmvScroll( msg ); }, 200 );
return;
}
var delta = msg.offsetHeight - msg.clientHeight;
delta = ( isNaN( delta )? 1 : delta + 1 );
if ( msg.scrollHeight > msg.clientHeight ) {
msg.style.height = ( msg.scrollHeight + delta ) + "px";
}
delta = msg.offsetWidth - msg.clientWidth;
delta = ( isNaN( delta )? 1 : delta + 1 );
if ( msg.scrollWidth > msg.clientWidth ) {
msg.style.width = ( msg.scrollWidth + delta ) + "px";
}
msg.style.overflow = "hidden";
msg.style.visibility = "visible";
}
function imgsDone( msg ) // for Firefox, we need to scan for images that haven't set their width yet
{
var imgList = msg.getElementsByTagName( "IMG" );
var len = ((imgList == null)? 0 : imgList.length);
for ( var i = 0; i < len; ++i ) {
var theImg = imgList[i];
if ( ! theImg.complete && "undefined" != typeof theImg.naturalWidth && theImg.naturalWidth == 0 ) {
return false;
}
}
return true;
}
var msg = document.getElementById( "message" );
if ( msg && "undefined" != typeof msg ) { rmvScroll( msg ); }