function DisplayComment(comBoxNum, comment) {
  if ( comBox1.style.display = 'none' )
  {
    comBox1.style.display = 'block';
  }
  comBox1.all.bodytext.innerText=comment;
   eval("document.all.comBox1.style.left ="+window.event.x+"+"+document.body.scrollLeft+"");
   eval("document.all.comBox1.style.top ="+window.event.y+"+"+document.body.scrollTop+"");
}
function HideComment(comBoxNum) {
 if ( comBox1.style.display = 'block' )
 {
   comBox1.style.display = 'none';
 }
}
function MoveComment(comBoxNum) {
 if ( comBox1.style.display = 'block' )
 {
   eval("comBox" +comBoxNum+ ".style.left ="+window.event.x+"+"+document.body.scrollLeft+"");
   eval("comBox" +comBoxNum+ ".style.top ="+window.event.y+"+"+document.body.scrollTop+"");
 }
}
function closeDiv(){
eval("document.all.comBox1.style.display='none'");
}
function displayDesc(obj){
var posX = window.event.x + 10;
if(obj=="EDIT"){
	comment = "Click here to add or update records in this list.";
}
if(obj=="ADMIN"){
	comment = "Click here to configure this screen.";
}
if ( document.all.popDesc.style.display = 'none' )
  {
    document.all.popDesc.style.display = 'block';
  }
  document.all.popDesc.all.bodytext.innerText=comment;
   eval("document.all.popDesc.style.left ="+posX+"+"+document.body.scrollLeft+"");
   eval("document.all.popDesc.style.top ="+window.event.y+"+"+document.body.scrollTop+"");
}
function closeDesc(){
eval("document.all.popDesc.style.display='none'");
}