// JScript source code
//----------------------------------------------------------------------------------
function ChangeState (obj)
//       ~~~~~~~~~~~
{
  var ObjTable = (eval("document.all." + obj));
  if ((ObjTable.style.display) == "none")
    (ObjTable.style.display) = "block";
      
  else if ((ObjTable.style.display) == "block")
	 (ObjTable.style.display) = "none";
}
function op(file,width,height)
 {
  LeftPoint = (screen.availWidth) / 2 ;
  def = open(file, "noname",  "scrollbars=0,width=" + width + ",height=" + height + ",status=0, top=280, left=" + LeftPoint)
 }
 //----------------------------------------------------------------------------------

