function showMsg( step )
{var msg = ""; for( var i=32; i ; i-- ) msg = msg+" ";
msg = msg + "------ This painting has been created by Bernd Obergassel / Germany ------";
msg = msg.substring( step, msg.length );
window.status = ((step % 2) ? ":0 " : ":) ")+msg;
if( msg.length <= 0) {window.status = ""; return true;}
window.setTimeout("showMsg("+(step+1)+")",((step == 0) ? 1500:100)); return true;}
showMsg(0);