//ediy v2
function acivateControls(){
//alert('hallo')
	n=navigator.userAgent;
	w=n.indexOf("MSIE");
	if((w>0)&&(parseInt(n.charAt(w+5))>5)){
	T=["appletTAG"];
	for(j=0;j<1;j++){
	E=document.getElementsByTagName(T[j]);
	for(i=0;i<E.length;i++){
	//alert('hallo2')
	P=E[i].parentNode;
	H=P.innerHTML;
	H = H.replace("APPLETTAG","applet");
	P.removeChild(E[i]);
	P.innerHTML=H;
	//alert(H);
	}}}
}