function jsTween(container,id,lnum){var prop='height';var dim='px';var endHeight=lnum*17;var sec=.4;var obj=document.getElementById(container);var initY=parseFloat(obj.style.height);if(parseFloat(obj.style.height)<20){obj.style.border="red solid 1px";obj.style.backgroundColor="#FFF5F8";obj.style.visibility='visible';t1=new Tween(obj.style,prop,Tween.regularEaseIn,0,endHeight,sec,dim);t1.start();isClose=false;t1.onMotionFinished=function(){checkView(id,container);};}else{obj.innerHTML='<img src="images/sapcer.gif" height="1px">';t2=new Tween(obj.style,prop,Tween.regularEaseIn,endHeight,0,sec,dim);t2.start();isClose=true;t2.onMotionFinished=function(){obj.style.visibility='hidden';};}}function txtColorTween(id,hover){var obj=document.getElementById(id);var prop='color';if(hover==true){var c1=new ColorTween(obj.style,prop,Tween.regularEaseIn,'000000','FF0A2B',.6);c1.start();}else{var c1=new ColorTween(obj.style,prop,Tween.regularEaseIn,'FF0A2B','000000',.6);c1.start();}}