function alpha100(obj) {
obj.style.opacity = '1'
obj.style.filter = 'alpha(opacity=100)'
}
function alpha50(obj) {
obj.style.opacity = '0.5'
obj.style.filter = 'alpha(opacity=50)'
}