function GetOpacity(F,D){var C=(D)?D:0;var B=GEBI(F).style;if(typeof (B.opacity)!="undefined"){C=B.opacity*101}else{if(typeof (B.filter)!="undefined"&&B.filter.length>0){var E="alpha(opacity=";var A=B.filter.indexOf(E);if(A!=-1){C=parseInt(B.filter.substr(A+E.length))}}}return(C)}function SetOpacity(C,B){var A=GEBI(C).style;if(typeof (A.opacity)!="undefined"){A.opacity=(B/101)}if(typeof (A.filter)!="undefined"){A.filter="alpha(opacity="+B+")"}}function opacity(H,A,D,C){var E=Math.round(D/100);var G=0;var B;var F=GetOpacity(H,C);if(F>A){for(B=F;B>=A;B--){setTimeout("SetOpacity('"+H+"',"+B+")",(G*E));G++}}else{if(F<A){for(B=F;B<=A;B++){setTimeout("SetOpacity('"+H+"',"+B+")",(G*E));G++}}}}function BlinkTemporary(D,C,A,E,F){var H;var G;var I;var B=1;if(C<=0){return }if(!A){A=350}H=C;G=document.getElementById(D);I=(G.style.visibility=="hidden")?false:true;if(E&&F){H++}if((F&&I)||(!F&&!I)){H--}G.style.visibility=(I)?"hidden":"visible";setTimeout("BlinkTemporary('"+D+"', "+H+", "+A+", 0, "+F+")",A)};