	



function ebAd_369202()
{
	this.nContentType = 1;			//	1:flash 2:image 3:eyewonder
	
	this.strFlashMov = ebResourcePath + "Site-822/Type-2/E50009B8-6BEE-422C-A41E-BB489F17FC6C.swf";
	this.flFlashVer = "7";
	this.nWidth = "500";
	this.nHeight = "500";
	this.nWeight = "81517";
	
	this.streaming = null;
	if ("1" == "1")
	{
		this.streaming = new Object();
		this.streaming.fAutoBuffer = "0";
		this.streaming.nMovieDuration = "";
		this.streaming.nHighBWBuffer = "50";
		this.streaming.nLowBWBuffer = "100";
	}
	
	this.nWidthScale = "100";
	this.fResizable = 0;
	this.fLimitVerSize = 0;

// Full-page skin URL

	// Default Skin
	this.strFSSkinURL = ebBigS + "/Res/EBFullScreenNone" + ebFullPageSkinVer + ".swf";
	this.nFSSkinWidth = 1024;
	this.nFSSkinHeight = 768;

this.nFSMute = 3;
this.fEnableFS = 0;
// Additional assets

this.arrAdditionalRes = new Array(); // backward compatibility - can be removed after upload to REL
this.additionalAssets = new Object();
this.nMoveType = 1;					//	1 - no movement   2 - move only  3 - move pause   4 - move pause move
this.nDisplayTime1 = -1;				//	In Sec
this.nDisplayTime2 = -1;				//	In Sec
this.nStopInterval = 10;			//	In Sec

this.nX0 = 50;
this.nY0 = 50;
this.nX1 = 0;
this.nY1 = 0;
this.nX2 = 0;
this.nY2 = 0;

this.fAbsPos = 0;
this.nPosType = 0;

//if the position type is pixels or relative, 
//we treat it as pixels.
//type=0: precentage
//type!=0:pixels
if (this.nPosType != 0)				// pixles or relative position
	this.fAbsPos = 1;
	
this.fScrollWithPage = 0;

this.fCentered = 0;
if (this.nPosType == 2)				// relative position
	this.fCentered = 0;
this.nPageWidth = 0;

this.strRefName = "";
this.nRefCorner = 1;

this.fHideDropDowns = ("1" == "1");
this.fHideIframes = ("0" == "1");
this.fHideFlash = ("1" == "1");
this.fHhideApplet = ("0" == "1");

if ("1" == "0")					// All Browsers
	this.nHideIframeIn = 0xffffffff;
else										//	IE5 (original and AOL) and NN6.x and NN7
	this.nHideIframeIn = 0x1 | 0x40 | 0x8 | 0x10 | 0x20;
	




	//	Update Remote Servers
	this.playRS = new ebCRemoteServers();
	
	//	Update Interactions
	this.interactions = new Object();
	
	//set the Default Interaction - "_eyeblaster"
	setDefaultInteraction(this);
	setInteractions(this);
	
	//		TODO ...
	//if (linkFlag.toLowerCase() == "true")
	//	gebInteractionBuffer[0].jumpURL = "http://www.dallasopera.org/tickets/s060705_tenDMN.php";
	//else
	//gebInteractionBuffer[0].jumpURL = "";

	function setDefaultInteraction(objRef)
	{
		objRef.interactions["_eyeblaster"] = new ebCInteraction("_eyeblaster");
		var inter = objRef.interactions["_eyeblaster"];
	
		inter.fCloseFlag = 1;
		inter.strJumpUrl = "http://www.dallasopera.org/tickets/s060705_tenDMN.php";
		if (inter.strJumpUrl != "")
			objRef.fLink = true;
		else
			objRef.fLink = false;
		inter.strTarget = "_blank";
		inter.RS.strNUrl = "";
		inter.RS.strAUrl = "";
		inter.fCountAsClick = 1;
		inter.jumpWin.strPosX = "";
		inter.jumpWin.strPosY = "";
		inter.jumpWin.strWidth = "";
		inter.jumpWin.strHeight = "";
		inter.jumpWin.strAddressBar = "0";
		inter.jumpWin.strMenuBar = "0";
	}
	


	//function setInteractions
	//	this function build all the interactions that came from the admin as objects
	//	in the interactions object.
	//	the interactions data that come from the admin is set in array in the folowing order:
	///////////////////////////
	//	0 : InteractionName
	//	1 : CloseFlag
	//	2 : JumpURL
	//	3 : JumpWinPosX
	//	4 : JumpWinPosY
	//	5 : JumpWinWidth
	//	6 : JumpWinHeight
	//	7 : JumpWinAddressBar
	//	8 : JumpWinMenuBar
	//	9 : NetworkTrackingURL
	// 10 :	AgencyTrackingURL
	// 11 : JumpTarget
	// 12 : CountAsClick
	// 13 : nType
	/////////////////////////////
	function setInteractions(objRef)
	{
		
	}
	
	function buildIntList(objRef,name,fClose,jumpURL,XPos,YPos,width,height,fAddress,fMenu,NUrl,AUrl,target,fClick,type,nInitiated)
	{
		//create a new interaction object and set all its properties.
			
		//inter[0] -> interaction name.
		objRef.interactions[name] = new ebCInteraction(name,type);
		var tempInter = objRef.interactions[name];
			
		tempInter.fCloseFlag = fClose;
		tempInter.strJumpUrl = jumpURL;

		tempInter.jumpWin.strPosX = XPos;
		tempInter.jumpWin.strPosY = YPos;
		tempInter.jumpWin.strWidth = width;
		tempInter.jumpWin.strHeight = height;
		tempInter.jumpWin.strAddressBar = fAddress;
		tempInter.jumpWin.strMenuBar = fMenu;
			
		tempInter.RS.strNUrl = NUrl;
		tempInter.RS.strAUrl = AUrl;
			
		var target = parseInt(target);
		switch (target)
		{
			case 0 :
				tempInter.strTarget = "_self";		// same window
				break;
			case 1 :
				tempInter.strTarget = "_blank";		// New window
				break;
			case 2 :
				tempInter.strTarget = "_top";		// Break the frameset
				break;
			default :
				tempInter.strTarget = "_blank";
		}

		tempInter.fCountAsClick = fClick;
		tempInter.nInitiated = nInitiated;		//0 - auto initiated;1 - user initiated
		//tempInter.print();		
	}
		
	
	


}


//	Mark this ad as loaded
ebScriptLoaded("ebAd_369202");
