function getOpacity(e) {
if (!e.filters) {
if (e.style.opacity) {
return parseFloat(e.style.opacity) * 100;
}
}
try {
return e.filters.item('alpha').opacity;
} catch (o) {
return 100;
}
}
function getOpacity(e) {
if (!e.filters) {
if (e.style.opacity) {
return parseFloat(e.style.opacity) * 100;
}
}
try {
return e.filters.item('alpha').opacity;
} catch (o) {
return 100;
}
}