document.write('
'); var coord;var coordb=800;coord=new Array(); coord[0]=0;coord[1]=0;coord[2]=0; var offsetxPub=0; function falling() { if(document.all) { EcranlargPub=document.body.clientWidth; EcranhautPub=document.body.clientHeight; offsetyPub=document.body.scrollTop; } else { EcranlargPub=window.innerWidth-12; EcranhautPub=window.innerHeight; offsetyPub=window.pageYOffset; } if(document.getElementById) { coord[0]=EcranlargPub+offsetxPub-145; var maxi=EcranhautPub+offsetyPub-100; coord[1]+=coord[2]; if (coord[1]>maxi) {coord[1]=maxi;coord[2]=-coord[2]/5;} document.getElementById("Fall").style.left=coord[0]; document.getElementById("Fall").style.top=coord[1]; coord[2]+=1; setTimeout('falling()',18); } } window.onload=falling;