function trnsOn(x){
    x.style.opacity=1;x.filters.alpha.opacity=100;
}
function trnOff(x,y) {
    var yb=y;
    yb = y/100;
    x.style.opacity=yb;x.filters.alpha.opacity=y;
}   

