function animate(a,b,c,d,e){if(animateEv==e){var f=10;var g=document.getElementById(a);if(g!=null){var h=c;if(g.style[b]!=""){h=parseInt(g.style[b])}if(h<d){h=h+f;if(h>d){h=d}}else{h=h-f;if(h<d){h=d}}g.style[b]=h+"px";if(h!=d){setTimeout("animate('"+a+"', '"+b+"', "+h+", "+d+", '"+e+"')",10)}}}}function startAnimate(a,b,c,d,e){animateEv=e;animate(a,b,c,d,e)}var animateEv=""
