function DisableStatuses()
{
  for ( var count = 0 ; count < document.links.length; count++ )
    document.links[count].onmouseover = BlankStatus;
}

function BlankStatus()
{
  window.status = MyStatus;
  return true;
}

function ShowWindow( Name, Url, Width, Height )
{
  xPosition = ( screen.width - Width ) / 2;
  yPosition = ( screen.height - Height ) / 2;
  if ( xPosition < 0 ) xPosition = 0;
  if ( yPosition < 0 ) yPosition = 0;

  if ( Name == 'Picture' )
	Scrollbars = 0;
  else
    Scrollbars = 1;

  eval( "Page" + Name + " = window.open( Url, '" + Name + "', 'toolbar=0,scrollbars=" + Scrollbars + ",top=' + yPosition + ',left=' + xPosition + ',location=0,statusbar=0,menubar=0,resizable=0,width=" + Width + ",height=" + Height + "' );" );
  eval( "Page" + Name + ".resizeTo( Width, Height );" );
  eval( "Page" + Name + ".moveTo( xPosition, yPosition );" );
  eval( "Page" + Name + ".focus();" );
}

function PrintPage()
{
  window.print();	
}