// Support Script (779)
// Copyright (c) 1998 by Elemental Software, Inc. - ALL RIGHTS RESERVED.
//
// This class finds the named object in either 4.0 DOM and 
// gathers information about it.
//
function objectInfo(objName)
{
	this.fullName = ""; // if this does not get filled the object could not be found.

	if (objName.length == 0) return;

	this.hide = objectInfoHide;
	this.show = objectInfoShow;
	this.setLeft = objectInfoSetLeft;
	this.setTop  = objectInfoSetTop;
	this.getPosition  = objectInfoGetPosition;
	this.isValid      = objectInfoIsValid;
	this.isValidIE    = objectInfoIsValidIE;
	this.getZindex    = objectInfoGetZindex;
	this.setZindex    = objectInfoSetZindex;
	this.getDimension = objectInfoGetDimension;
	this.setDimension = objectInfoSetDimension;
 this.shiftTo      = objectInfoShiftTo;

	// find the named object in the DOM and then get the properties

	if (document.all) // IE
	{
		while (true)
		{
			if (eval("document.all.DBStyle" + objName))
			{
				if (eval("document.all.DBStyle" + objName + ".offsetWidth"))
				{
					this.fullName = "document.all.DBStyle" + objName;
					this.tagName  = this.fullName;
				}
			}
			else if (eval("document.all." + objName))
			{
				if (eval("document.all." + objName + ".offsetWidth"))
				{
					// Text in DIV tags are caught here
					this.fullName = "document.all." + objName;
					this.tagName  = this.fullName;
				}
				else if (eval("document.all." + objName + "." + objName) != null)
				{
					// Other tags are caught here.
					if (eval("document.all." + objName + "[1].tagName")  != "DIV")
					{
						this.fullName = "document.all." + objName + "[0]";
						this.tagName  = "document.all." + objName + "[1]";
					}
				}
			}

			// strip underscores out of input and try one more time
			if (this.fullName.length > 0) break;
			objName2 = objName.replace(/_/, "");
			if (objName2 == objName) break;
			objName = objName2;
		}

		
		if (this.fullName.length > 0)
		{
			this.styleKey = '.style'; // used to access style info
			this.width  = eval(this.fullName + ".offsetWidth");
			this.height = eval(this.fullName + ".offsetHeight");
		}
	}
	else  // NC
	{
		if (document.layers)
		{
			sectionNumber = 0;
			while (true)
			{
				sectionName = "LyrSection" + sectionNumber.toString();
				if (eval("document.layers." + sectionName) == null) break;  // can't find object in DOM

				// see if this is an object in the DOM
				if (eval("document.layers." + sectionName + ".document"))
				{
					while (true)
					{
						if (eval("document.layers." + sectionName + ".document.layers.LyrDBStyle" + objName))
						{
							this.fullName = "document.layers." + sectionName + ".document.layers.LyrDBStyle" + objName;
							this.tagName  = "document.layers." + sectionName + ".document." + objName; 
							break;
						}
						else if (eval("document.layers." + sectionName + ".document.layers.Lyr" + objName))
						{
							this.fullName = "document.layers." + sectionName + ".document.layers.Lyr" + objName;
							this.tagName  = "document.layers." + sectionName + ".document." + objName; 
							break;
						}
						else if (eval("document.layers." + sectionName + ".document.layers." + objName))
						{
							this.fullName = "document.layers." + sectionName + ".document.layers." + objName;
							this.tagName  = "document.layers." + sectionName + ".document." + objName; 
							break;
						}

						// strip underscores out of input and try one more time
						if (this.fullName.length > 0) break;
						objName2 = objName.replace(/_/, "");
						if (objName2 == objName) break;
						objName = objName2;
					}

				} else alert("objectInfo: " + "document.layers." + sectionName + ".document" + " is not an object");

				sectionNumber++;
			} // end while (looping over all SectionN relative positioning layers)

			if (this.fullName.length > 0 && "undefined" != typeof(eval(this.fullName + ".pageX")))
			{
				this.styleKey = '';

				if (eval(this.fullName + ".dbWidth"))
				{
					// we have previously set the values - get them from here, since if we changed
					// the clipping region the size will be wrong (it will be clipping size - not native size).
					this.width  = eval(this.fullName + ".dbWidth");
					this.height = eval(this.fullName + ".dbHeight");
				}
				else
				{
					// get the clipping size and save it off since we haven't yet clipped this guy.
					this.width  = eval(this.fullName + ".clip.width");
					this.height = eval(this.fullName + ".clip.height");
					eval(this.fullName + ".dbWidth  = this.width");
					eval(this.fullName + ".dbHeight = this.height");
				}
			}
			else
			{
				this.fullName = "";
				this.tagName  = "";
			}
		}  // end if (document.layers  e.g. NC)
	}
	this.object = null;
	if (this.fullName.length > 0)
		this.object = eval(this.fullName);
}

function objectInfoHide()
{	
	if (this.fullName.length > 0)
		eval(this.fullName + this.styleKey + ".visibility = 'hidden';");
}

function objectInfoShow()
{
	if (this.fullName.length > 0)
		eval(this.fullName + this.styleKey + ".visibility = 'visible';");
}

function objectInfoSetLeft(left)
{
	if (this.fullName.length > 0)
		eval(this.fullName + this.styleKey + ".left = left");
}

function objectInfoSetTop(top)
{
	if (this.fullName.length > 0)
		eval(this.fullName + this.styleKey + ".top = top");
}

function objectInfoGetPosition()
{
	ret = null;
	if (this.fullName.length > 0)
	{
		if ("undefined" != typeof(eval(this.fullName + ".offsetLeft")))
		{
			ret = new Object;
			ret.left   = eval(this.fullName + ".offsetLeft");
			ret.top    = eval(this.fullName + ".offsetTop");
		}
		else if ("undefined" != typeof(eval(this.fullName + ".pageX")))
		{
			ret = new Object;
			ret.left = eval(this.fullName + ".pageX");
			ret.top  = eval(this.fullName + ".pageY");
		}
	}
	return ret;
}

function objectInfoIsValid()
{
	return (this.fullName.length > 0 && this.object);
}

function objectInfoIsValidIE()
{
	return (this.fullName.length > 0 && this.object && document.all);
}


function objectInfoGetZindex()
{
	  if (this.fullName.length > 0)
  	{
	   ret = eval(this.fullName + this.styleKey + ".zIndex");
	   return (ret);
  	}
}

function objectInfoSetZindex(ind)
{
  if (this.fullName.length > 0 )
  {
    eval(this.fullName + this.styleKey + ".zIndex = ind");
  }
}

function objectInfoGetDimension()
{

   ret = null;
   ret = new Object;
   if (document.all) {  // IE
      ret.width = eval(this.fullName + ".offsetWidth");
      ret.height = eval(this.fullName + ".offsetHeight");
   }
   else {  // NC
      if (eval(this.fullName + ".dbWidth")) {
         ret.width  = eval(this.fullName + ".dbWidth");
         ret.height = eval(this.fullName + ".dbHeight");
      }
      else {
         ret.width = eval(this.fullName + ".clip.width");
         ret.height = eval(this.fullName + ".clip.height");
      }
   }
    
   return (ret);
}       

function objectInfoSetDimension(w, h)
{
   if (document.all) { // IE
     eval(this.fullName + this.styleKey + ".width = w");
     eval(this.fullName + this.styleKey + ".height = h");
   }
   else { // NC
     if (eval(this.fullName + ".clip.width")) {
        eval(this.fullName + ".clip.width = w");
        eval(this.fullName + ".clip.height = h");
     }
     eval(this.fullName + ".dbWidth = w");
     eval(this.fullName + ".dbHeight = h");
   }
   this.width = w;
   this.height = h;
}

function objectInfoShiftTo(x, y)
{
   if (document.all) { // IE
      eval(this.fullName + this.styleKey + ".left = x");
      eval(this.fullName + this.styleKey + ".top  = y");
   }
   else { // NC
      eval(this.fullName + ".moveTo(x,y)");
   }
}
function document_onLoad() {
var objInfo = new objectInfo("Text14");
if (objInfo.fullName.length > 0)
  eval(objInfo.fullName + objInfo.styleKey + ".visibility='hidden'");
var objInfo = new objectInfo("Text15");
if (objInfo.fullName.length > 0)
  eval(objInfo.fullName + objInfo.styleKey + ".visibility='hidden'");
var objInfo = new objectInfo("Text16");
if (objInfo.fullName.length > 0)
  eval(objInfo.fullName + objInfo.styleKey + ".visibility='hidden'");
var objInfo = new objectInfo("Text18");
if (objInfo.fullName.length > 0)
  eval(objInfo.fullName + objInfo.styleKey + ".visibility='hidden'");
var objInfo = new objectInfo("Text21");
if (objInfo.fullName.length > 0)
  eval(objInfo.fullName + objInfo.styleKey + ".visibility='hidden'");
var objInfo = new objectInfo("Text22");
if (objInfo.fullName.length > 0)
  eval(objInfo.fullName + objInfo.styleKey + ".visibility='hidden'");
var objInfo = new objectInfo("Text23");
if (objInfo.fullName.length > 0)
  eval(objInfo.fullName + objInfo.styleKey + ".visibility='hidden'");
var objInfo = new objectInfo("Text24");
if (objInfo.fullName.length > 0)
  eval(objInfo.fullName + objInfo.styleKey + ".visibility='hidden'");
var objInfo = new objectInfo("Text7");
if (objInfo.fullName.length > 0)
  eval(objInfo.fullName + objInfo.styleKey + ".visibility='hidden'");
var objInfo = new objectInfo("Text26");
if (objInfo.fullName.length > 0)
  eval(objInfo.fullName + objInfo.styleKey + ".visibility='hidden'");
var objInfo = new objectInfo("Text27");
if (objInfo.fullName.length > 0)
  eval(objInfo.fullName + objInfo.styleKey + ".visibility='hidden'");
var objInfo = new objectInfo("Text28");
if (objInfo.fullName.length > 0)
  eval(objInfo.fullName + objInfo.styleKey + ".visibility='hidden'");
var objInfo = new objectInfo("Text29");
if (objInfo.fullName.length > 0)
  eval(objInfo.fullName + objInfo.styleKey + ".visibility='hidden'");
var objInfo = new objectInfo("Text30");
if (objInfo.fullName.length > 0)
  eval(objInfo.fullName + objInfo.styleKey + ".visibility='hidden'");
var objInfo = new objectInfo("Text32");
if (objInfo.fullName.length > 0)
  eval(objInfo.fullName + objInfo.styleKey + ".visibility='hidden'");
 }
function Text2_onMouseOver() {
var objInfo = new objectInfo("Text14");
objInfo.show();
 }
function _Text2_onMouseOver() { if (Text2) return Text2.onMouseOver(); }
function Text2_onMouseOut() {
var objInfo = new objectInfo("Text14");
objInfo.hide();
 }
function _Text2_onMouseOut() { if (Text2) return Text2.onMouseOut(); }
function Text3_onMouseOver() {
var objInfo = new objectInfo("Text15");
objInfo.show();
 }
function _Text3_onMouseOver() { if (Text3) return Text3.onMouseOver(); }
function Text3_onMouseOut() {
var objInfo = new objectInfo("Text15");
objInfo.hide();
 }
function _Text3_onMouseOut() { if (Text3) return Text3.onMouseOut(); }
function Text4_onMouseOver() {
var objInfo = new objectInfo("Text16");
objInfo.show();
 }
function _Text4_onMouseOver() { if (Text4) return Text4.onMouseOver(); }
function Text4_onMouseOut() {
var objInfo = new objectInfo("Text16");
objInfo.hide();
 }
function _Text4_onMouseOut() { if (Text4) return Text4.onMouseOut(); }
function Text6_onMouseOver() {
var objInfo = new objectInfo("Text18");
objInfo.show();
 }
function _Text6_onMouseOver() { if (Text6) return Text6.onMouseOver(); }
function Text6_onMouseOut() {
var objInfo = new objectInfo("Text18");
objInfo.hide();
 }
function _Text6_onMouseOut() { if (Text6) return Text6.onMouseOut(); }
function Text9_onMouseOver() {
var objInfo = new objectInfo("Text21");
objInfo.show();
 }
function _Text9_onMouseOver() { if (Text9) return Text9.onMouseOver(); }
function Text9_onMouseOut() {
var objInfo = new objectInfo("Text21");
objInfo.hide();
 }
function _Text9_onMouseOut() { if (Text9) return Text9.onMouseOut(); }
function Text10_onMouseOver() {
var objInfo = new objectInfo("Text22");
objInfo.show();
 }
function _Text10_onMouseOver() { if (Text10) return Text10.onMouseOver(); }
function Text10_onMouseOut() {
var objInfo = new objectInfo("Text22");
objInfo.hide();
 }
function _Text10_onMouseOut() { if (Text10) return Text10.onMouseOut(); }
function Text11_onMouseOver() {
var objInfo = new objectInfo("Text23");
objInfo.show();
 }
function _Text11_onMouseOver() { if (Text11) return Text11.onMouseOver(); }
function Text11_onMouseOut() {
var objInfo = new objectInfo("Text23");
objInfo.hide();
 }
function _Text11_onMouseOut() { if (Text11) return Text11.onMouseOut(); }
function Text12_onMouseOver() {
var objInfo = new objectInfo("Text24");
objInfo.show();
 }
function _Text12_onMouseOver() { if (Text12) return Text12.onMouseOver(); }
function Text12_onMouseOut() {
var objInfo = new objectInfo("Text24");
objInfo.hide();
 }
function _Text12_onMouseOut() { if (Text12) return Text12.onMouseOut(); }
function Text5_onMouseOver() {
var objInfo = new objectInfo("Text7");
objInfo.show();
 }
function _Text5_onMouseOver() { if (Text5) return Text5.onMouseOver(); }
function Text5_onMouseOut() {
var objInfo = new objectInfo("Text7");
objInfo.hide();
 }
function _Text5_onMouseOut() { if (Text5) return Text5.onMouseOut(); }
function ImageButton3_onMouseOver() {

 }
function _ImageButton3_onMouseOver() { if (ImageButton3) return ImageButton3.onMouseOver(); }
function ImageButton3_onMouseOut() {

 }
function _ImageButton3_onMouseOut() { if (ImageButton3) return ImageButton3.onMouseOut(); }
function ImageButton4_onMouseOver() {

 }
function _ImageButton4_onMouseOver() { if (ImageButton4) return ImageButton4.onMouseOver(); }
function ImageButton4_onMouseOut() {

 }
function _ImageButton4_onMouseOut() { if (ImageButton4) return ImageButton4.onMouseOut(); }
function ImageButton10_onMouseOver() {

 }
function _ImageButton10_onMouseOver() { if (ImageButton10) return ImageButton10.onMouseOver(); }
function ImageButton10_onMouseOut() {

 }
function _ImageButton10_onMouseOut() { if (ImageButton10) return ImageButton10.onMouseOut(); }
function ImageButton11_onMouseOver() {

 }
function _ImageButton11_onMouseOver() { if (ImageButton11) return ImageButton11.onMouseOver(); }
function ImageButton11_onMouseOut() {

 }
function _ImageButton11_onMouseOut() { if (ImageButton11) return ImageButton11.onMouseOut(); }
function ImageButton12_onMouseOver() {

 }
function _ImageButton12_onMouseOver() { if (ImageButton12) return ImageButton12.onMouseOver(); }
function ImageButton12_onMouseOut() {

 }
function _ImageButton12_onMouseOut() { if (ImageButton12) return ImageButton12.onMouseOut(); }
function Text8_onMouseOver() {
var objInfo = new objectInfo("Text26");
objInfo.show();
 }
function _Text8_onMouseOver() { if (Text8) return Text8.onMouseOver(); }
function Text8_onMouseOut() {
var objInfo = new objectInfo("Text26");
objInfo.hide();
 }
function _Text8_onMouseOut() { if (Text8) return Text8.onMouseOut(); }
function Text13_onMouseOver() {
var objInfo = new objectInfo("Text27");
objInfo.show();
 }
function _Text13_onMouseOver() { if (Text13) return Text13.onMouseOver(); }
function Text13_onMouseOut() {
var objInfo = new objectInfo("Text27");
objInfo.hide();
 }
function _Text13_onMouseOut() { if (Text13) return Text13.onMouseOut(); }
function Text17_onMouseOver() {
var objInfo = new objectInfo("Text28");
objInfo.show();
 }
function _Text17_onMouseOver() { if (Text17) return Text17.onMouseOver(); }
function Text17_onMouseOut() {
var objInfo = new objectInfo("Text28");
objInfo.hide();
 }
function _Text17_onMouseOut() { if (Text17) return Text17.onMouseOut(); }
function Text19_onMouseOver() {
var objInfo = new objectInfo("Text29");
objInfo.show();
 }
function _Text19_onMouseOver() { if (Text19) return Text19.onMouseOver(); }
function Text19_onMouseOut() {
var objInfo = new objectInfo("Text29");
objInfo.hide();
 }
function _Text19_onMouseOut() { if (Text19) return Text19.onMouseOut(); }
function Text20_onMouseOver() {
var objInfo = new objectInfo("Text30");
objInfo.show();
 }
function _Text20_onMouseOver() { if (Text20) return Text20.onMouseOver(); }
function Text20_onMouseOut() {
var objInfo = new objectInfo("Text30");
objInfo.hide();
 }
function _Text20_onMouseOut() { if (Text20) return Text20.onMouseOut(); }
function Text31_onMouseOver() {
var objInfo = new objectInfo("Text32");
objInfo.show();
 }
function _Text31_onMouseOver() { if (Text31) return Text31.onMouseOver(); }
function Text31_onMouseOut() {
var objInfo = new objectInfo("Text32");
objInfo.hide();
 }
function _Text31_onMouseOut() { if (Text31) return Text31.onMouseOut(); }


