function ch() 
{ var targetId, srcElement, tE;  
 srcElement = window.event.srcElement;
 if(srcElement != null)
 
 if (srcElement.className == "Outline") 
  { targetId = srcElement.id + "details"; 
  tE = document.all(targetId);  
    if (tE.style.display == "none") 
     { tE.style.display = ""; }
    else 
     { tE.style.display = "none"; }
  }
} //document.onclick = ch;

function opwin(url,name,feat) 
 {window.open(url,name,feat) }

 

