﻿// JScript 文件

function showmenu(strID){
    var i;
    for(i=0;i<1;i++){
        var lay;
        lay = eval('lay' + i);
        if (lay.style.display=="block" && lay!=eval(strID)){
            lay.style.display = "none";
        }
    }
    if (strID.style.display=="none"){
        strID.style.display = "block"; 
    }else{
        strID.style.display = "none"; 
    }
}



function moveaccountdiv(event,accountname)
{
	var showdiv=document.getElementById(accountname);
	var l= document.body.scrollLeft + event.clientX+10
    showdiv.style.left= l +'px';
}
