function ShowBandList(e,v) {
if(navigator.appName=="Microsoft Internet Explorer") {
x = event.x + document.body.scrollLeft
y = event.y + document.body.scrollTop

document.getElementById('list'+v).style.left = x+7;
document.getElementById('list'+v).style.top = y;
document.getElementById('list'+v).style.visibility ='visible';

}


if(navigator.appName=="Netscape") {
x = e.pageX;
y = e.pageY
document.getElementById('list'+v).style.left = x+7;
document.getElementById('list'+v).style.top = y;
document.getElementById('list'+v).style.visibility ='visible';
}


}


function HideBandList(v) {

document.getElementById('list'+v).style.visibility ='hidden';


}