﻿// JScript 文件
function onPhotoMouseOver(PhotoID)
{
    document.getElementById("piDiv"+ PhotoID +"").style.backgroundColor='#ececec';
    if (document.getElementById("opDiv"+ PhotoID +""))
        document.getElementById("opDiv"+ PhotoID +"").style.visibility='visible';
}

function onPhotoMouseOut(PhotoID)
{
    document.getElementById("piDiv"+ PhotoID +"").style.backgroundColor='';
    if (document.getElementById("opDiv"+ PhotoID +""))
        document.getElementById("opDiv"+ PhotoID +"").style.visibility='hidden';
}
