<!--
/*
 Microsoft Verdict.
 Written for Internet Explorer 5.0 or higher.
 This displays an wacky "illegal operation" window, and a corresponding detail view.
*/

function details(x) // Expand or hide verdict image
{
 var v=document.verdict.style;
 if (v.pixelHeight==124)
 {
  v.height=269;
  x.src="judicial.gif";
 }
 else
 {
  v.height=124; x.src="verdict.gif";
  v.visibility='hidden';
 }
}

function pop() // display verdict image
{
 var v=document.verdict.style;
 var b=document.body;
 v.left=screen.width/2-v.pixelWidth/2-event.screenX+event.clientX+b.scrollLeft;
 v.top=screen.height/2-v.pixelHeight/2-event.screenY+event.clientY+b.scrollTop;
 v.visibility='visible';
}

function idle() // Do nothing. (for go-nowhere links)
{
}

// -->

