function setShotPosition( DIV_id, e ) {
    if (document.all) {
        DIV = eval ( "document.all." + DIV_id );
        DIV.style.left = e.offsetX + 580;
 
    } else if (document.getElementById) {
        DIV = eval ( "document.getElementById('" + DIV_id + "')");
        DIV.style.top  = e.pageY;
        DIV.style.left = e.pagex;
    }
    //DIV.style.zIndex = ++document.formPdsList.zIndex.value ;
}

function ShowShot( DIV_id ) {
    var ie = ( document.all     ) ? 1 : 0;
    var ns6 = document.getElementById && !document.all ? 1 : 0;
    var DIV = null;
    if ( ie  ) {
         eval(DIV_id + ".filters.RevealTrans.apply()");
         document.all[DIV_id].style.visibility = "visible";
         eval(DIV_id+ ".filters.RevealTrans.play()");
        //DIV = eval ( "document.all." + DIV_id );
        //DIV.style.visibility="visible";
         BtnShot = eval( "document.all." + "BtnShot" + DIV_id.substr(DIV_id.indexOf("_")) );
         BtnShot.href = "javascript:HideShot('" + DIV_id + "')";
    }
    if ( ns6 ) {
        DIV = eval ( "document.getElementById('" + DIV_id + "')");
        DIV.style.visibility="visible";
        BtnShot = eval( "document.getElementById('" + "BtnShot" + DIV_id.substr(DIV_id.indexOf("_")) + "')");
        BtnShot.href = "javascript:HideShot('" + DIV_id + "')";
    }
}

function HideShot( DIV_id ) {
    var ie = ( document.all     ) ? 1 : 0;
    var ns6 = document.getElementById && !document.all ? 1 : 0;
    var DIV = null;
    if ( ie  ) {
         eval(DIV_id + ".filters.RevealTrans.apply()");
         document.all[DIV_id].style.visibility = "hidden";
         eval(DIV_id+ ".filters.RevealTrans.play()");
        //DIV = eval ( "document.all." + DIV_id );
        //DIV.style.visibility="hidden";
         BtnShot = eval( "document.all." + "BtnShot" + DIV_id.substr(DIV_id.indexOf("_")) );
         BtnShot.href = "javascript:ShowShot('" + DIV_id + "')";
    }
    if ( ns6 ) {
        DIV = eval ( "document.getElementById('" + DIV_id + "')");
        DIV.style.visibility="hidden";
        BtnShot = eval( "document.getElementById('" + "BtnShot" + DIV_id.substr(DIV_id.indexOf("_")) + "')");
        BtnShot.href = "javascript:ShowShot('" + DIV_id + "')";
    }
}

 