function fadeup(thisone,choice)

{
level = (choice==0)? 1 : 0.7

if (thisone.style.MozOpacity)
  thisone.style.MozOpacity=level
else if (thisone.filters)
  thisone.filters.alpha.opacity=level*100
}
