
function LoadSld( slideId )
{
	if( !g_supportsPPTHTML ) return
	if( slideId )
		parent.SldUpdated(slideId)
	g_origSz=parseInt(SlideObj.style.fontSize)
	g_origH=SlideObj.style.posHeight
	g_origW=SlideObj.style.posWidth
	g_scaleHyperlinks=(document.all.tags("AREA").length>0)
	if( g_scaleHyperlinks )
		InitHLinkArray()
	if( g_scaleInFrame||(IsWin("PPTSld") && parent.IsFullScrMode() ) )
		document.body.scroll="no"
	_RSW()
	if( IsWin("PPTSld") && parent.IsFullScrMode() )	{
		document.oncontextmenu=parent._CM;
		self.focus()
	}
}
function MakeSldVis( fTrans ) 
{
	fTrans=fTrans && g_showAnimation
	if( fTrans )
	{
		if( g_bgSound ) {
			idx=g_bgSound.indexOf(",");
			pptSound.src=g_bgSound.substr( 0, idx );
			pptSound.loop= -(parseInt(g_bgSound.substr(idx+1)));
		}
		SlideObj.filters.revealtrans.Apply()
	}
	SlideObj.style.visibility="visible"
	if( fTrans )
		SlideObj.filters.revealtrans.Play()
}
function MakeNotesVis() 
{
	if( !IsNts() ) return false 
	SlideObj.style.display="none"
	nObj = document.all.item("NotesObj")
	parent.SetHasNts(0)
	if( nObj ) { 
		nObj.style.display=""
		parent.SetHasNts(1)
	}
	return 1
}
function Redirect( frmId,sId )
{
	var str=document.location.hash,idx=str.indexOf('#')
	if(idx>=0) str=str.substr(1);
	if( window.name != frmId && ( sId != str) ) {
		obj = document.all.item("Main-File")
		window.location.href=obj.href+"#"+sId
		return 1
	}
	return 0
}
function HideMenu() { if( frames["PPTSld"] && PPTSld.document.all.item("ctxtmenu") && PPTSld.ctxtmenu.style.display!="none" ) { PPTSld.ctxtmenu.style.display='none'; return true } return false }
function IsWin( name ) { return window.name == name }
function IsNts() { return IsWin("PPTNts") }
function IsSldOrNts() { return( IsWin("PPTSld")||IsWin("PPTNts") ) }
function SupportsPPTAnimation() { return( navigator.platform == "Win32" && navigator.appVersion.indexOf("Windows")>0 ) }
function SupportsPPTHTML()
{
	var appVer=navigator.appVersion, msie=appVer.indexOf("MSIE "), ver=0
	if( msie >= 0 )
		ver=parseFloat( appVer.substring( msie+5, appVer.indexOf(";",msie) ) )
	else
		ver=parseInt(appVer)

	return( ver >= 4 && msie >= 0 )
}
var MHTMLPrefix = CalculateMHTMLPrefix(); 
function CalculateMHTMLPrefix()
{
	if ( document.location.protocol == 'mhtml:') { 
		href=new String(document.location.href) 
		Start=href.indexOf('!')+1 
		End=href.lastIndexOf('/')+1 
		if (End < Start) 
			return href.substring(0, Start) 
		else 
		return href.substring(0, End) 
	}
	return '';
}

function _RSW()
{
	if( !g_supportsPPTHTML || IsNts() ||
	  ( !g_scaleInFrame && (( window.name != "PPTSld" ) || !parent.IsFullScrMode()) ) )
		return

	cltWidth=document.body.clientWidth
	cltHeight=document.body.clientHeight
	factor=(1.0*cltWidth)/g_origW
	if( cltHeight < g_origH*factor )
		factor=(1.0*cltHeight)/g_origH

	newSize = g_origSz * factor
	if( newSize < 1 ) newSize=1

	s=SlideObj.style
	s.fontSize=newSize+"px"
	s.posWidth=g_origW*factor
	s.posHeight=g_origH*factor
	s.posLeft=(cltWidth-s.posWidth)/2
	s.posTop=(cltHeight-s.posHeight)/2

	if( g_scaleHyperlinks )
		ScaleHyperlinks( factor )
}

function _KPH()
{ 
  if( IsNts() ) return;

  if( !parent.IsFramesMode() && event.keyCode == 27 && !parent.HideMenu() )
    parent.window.close( self );
  else if( event.keyCode == 32 )
  {
    if( window.name == "PPTSld" )
      parent.PPTSld.DocumentOnClick();
    else
      parent.GoToNextSld();
  }
}

var g_HLinkArray = new Array();
 
function IMapAreaObj( areaObj, coords )
{
  this.areaObj = areaObj;
  this.coords = coords;
}

function InitHLinkArray()
{
  var appVer = navigator.appVersion;
  var msie = appVer.indexOf ( "MSIE " )
  var ver = 0;
  if ( msie >= 0 )
    ver = parseInt ( appVer.substring( msie+5 ) );

  linkNum = 0;

  for (i=0; i<document.all.tags("AREA").length; i++) {
    areaObj = document.all.tags("AREA").item(i);
    if( ( areaObj.id != "pptxscale" ) || ( ver > 4 ) )
      g_HLinkArray[linkNum++] = new IMapAreaObj( areaObj, ParseCoords( areaObj.coords ) );
  }
}

function ScaleHyperlinks( factor )
{   
  for ( ii=0; ii< g_HLinkArray.length; ii++) {
    coordsStr="";
    imaObj = g_HLinkArray[ii];
    for ( jj=0; jj < imaObj.coords.length-1; jj++ )
  	  coordsStr += (imaObj.coords[jj]*factor) + ",";
    coordsStr += (imaObj.coords[jj]*factor);
    imaObj.areaObj.coords = coordsStr;
  }
}

function ParseCoords( coordsStr )
{
  var numArray = new Array();
  var i = curPos = commaPos = 0;

  while ( ( commaPos = coordsStr.indexOf(",", curPos) ) != -1 ) { 
    numArray[i++] = parseInt( coordsStr.substr( curPos, commaPos ) );
    curPos = commaPos + 1;
  }
  numArray[i] = parseInt( coordsStr.substr( curPos ) );

  return numArray;
}


function DocumentOnClick()
{
	if( IsNts() || parent.HideMenu() ) return;
	if( ( g_allowAdvOnClick && !parent.IsFramesMode() ) ||
	    (event && (event.keyCode==32) ) )
		parent.GoToNextSld();
}



var g_supportsPPTHTML = SupportsPPTHTML(), g_scaleInFrame = true, gId="", g_bgSound="",
    g_scaleHyperlinks = false, g_allowAdvOnClick = false, g_showInBrowser = false;
var g_showAnimation = g_supportsPPTHTML && SupportsPPTAnimation() && g_showInBrowser;
var g_hasTrans = false, g_autoTrans = false, g_transSecs = 0;
var g_animManager = null;

var ENDSHOW_MESG="Fin de la presentación, haga clic para salir.", SCREEN_MODE="Frames", gIsEndShow=0, NUM_VIS_SLDS=923, SCRIPT_HREF="index_script.js", FULLSCR_HREF="index_fullscreen.htm";
var gCurSld = gPrevSld = 1, g_offset = 0, gNtsOpen = gHasNts = gOtlTxtExp = gNarrationPaused = false, gOtlOpen = true
window.gPPTHTML=SupportsPPTHTML()

function UpdNtsPane(){ PPTNts.location.replace( MHTMLPrefix+GetHrefObj( gCurSld ).mNtsHref ) }
function UpdNavPane( sldIndex ){ if(gNavLoaded) PPTNav.UpdNav() }
function UpdOtNavPane(){ if(gOtlNavLoaded) PPTOtlNav.UpdOtlNav() }
function UpdOtlPane(){ if(gOtlLoaded) PPTOtl.UpdOtl() }
function SetHasNts( fVal )
{
	if( gHasNts != fVal ) {
		gHasNts=fVal
		UpdNavPane()
	}
}
function ToggleOtlText()
{
	gOtlTxtExp=!gOtlTxtExp
	UpdOtlPane()
}
function ToggleOtlPane()
{
	frmset=document.all("PPTHorizAdjust")
	frm=document.all("PPTOtl")

	if( gOtlOpen )
		frmset.cols="*,100%"
	else
		frmset.cols="20%,80%"

	gOtlOpen=!gOtlOpen
	frm.noResize=!frm.noResize
	UpdOtNavPane()
}
function ToggleNtsPane()
{
	frmset=document.all("PPTVertAdjust")
	frm=document.all("PPTNts")

	if( gNtsOpen )
		frmset.rows="100%,*"
	else
		frmset.rows="80%,20%"

	gNtsOpen=!gNtsOpen
	UpdNtsPane()
}
function FullScreen(){ window.open( MHTMLPrefix+FULLSCR_HREF,null,"fullscreen=yes" ) }
function ToggleVNarration()
{
	rObj=PPTSld.document.all("NSPlay")
	if( rObj ) {
		if( gNarrationPaused )
			rObj.Play()
		else
			rObj.Pause()

		gNarrationPaused=!gNarrationPaused
	}
}
function GetCurSldNum()
{   
	obj=GetHrefObj(gCurSld)
	if( obj.mOrigVis == 1 )
		return obj.mSldIdx
	else   
		return gCurSld
}
function GetNumSlds()
{   
	if( GetHrefObj(gCurSld).mOrigVis == 1 )
		return NUM_VIS_SLDS
	else
		return gDocTable.length
}
function GetSldNum( href )
{
	for(ii=0; ii<gDocTable.length; ii++) {
		if ( gDocTable[ii].mSldHref == href )
			return ii+1
	}
	return 1
}
function GetHrefObj( sldIdx ){ return gDocTable[sldIdx-1] }
function IsFramesMode(){ return ( SCREEN_MODE == "Frames" ) }
function IsFullScrMode(){ return ( SCREEN_MODE == "FullScreen" ) }
function GoToNextSld()
{   
	ii=gCurSld + 1
	if( GetHrefObj( ii-1 ).mOrigVis == 0 ) {
		if( ii<=gDocTable.length ) {
			obj=GetHrefObj(ii)
			obj.mVis=1
			GoToSld(obj.mSldHref)
			return
		}		
	}
	else {
		obj=GetHrefObj( ii )
		while ( obj && ( obj.mOrigVis == 0 ) )
			obj=GetHrefObj(ii++)
		if( obj && obj.mOrigVis ) {
			GoToSld(obj.mSldHref)	
			return
		}	
	}
	if( !IsFramesMode() ) EndShow()
}
function GoToPrevSld()
{
	ii=gCurSld-1
	if( ii > 0 ) {      
		obj=GetHrefObj(ii)
		while ( ( obj.mVis == 0 ) && ( ii>0 ) )
			obj=GetHrefObj(ii--)
		GoToSld(obj.mSldHref)
	}
}
function GoToFirst(){ GoToSld( GetHrefObj(1).mSldHref ) }
function GoToLast()
{
	ii=gDocTable.length
	if( ii != gCurSld )
		GoToSld( GetHrefObj(ii).mSldHref )
}
function GoToSld( href )
{
	if( PPTSld.event ) PPTSld.event.cancelBubble=true
	GetHrefObj( GetSldNum(href) ).mVis=1
	PPTSld.location.href=MHTMLPrefix+href
}
function SldUpdated( id )
{
	if( id == GetHrefObj(gCurSld).mSldHref ) return
	gPrevSld=gCurSld
	gCurSld=GetSldNum(id)
	if( IsFramesMode() ) {
		UpdNavPane(); UpdOtlPane(); UpdNtsPane()
	}
}

function PrevSldViewed(){ GoToSld( GetHrefObj(gPrevSld).mSldHref ) }
function HasPrevSld() { return ( gIsEndShow || ( gCurSld != 1 && GetHrefObj( gCurSld-1 ).mVis == 1 )||( GetCurSldNum() > 1 ) ) }
function HasNextSld() { return (GetCurSldNum() != GetNumSlds()) }
function EndShow()
{
	if( PPTSld.event ) PPTSld.event.cancelBubble=true

	doc=PPTSld.document
	doc.open()
	doc.writeln('<html><head><script defer>function CloseWindow(){ if( parent.HideMenu() ) return; if( !parent.IsFramesMode() && event && (event.keyCode==27 || event.keyCode==32 || event.type=="click" ) ) parent.window.close( self ); } function Unload() { parent.gIsEndShow=0; } function SetupEndShow() { parent.gIsEndShow=1; document.body.scroll="no"; document.onkeypress=CloseWindow; document.onclick=CloseWindow; document.oncontextmenu=parent._CM; }</script></head><body bgcolor=black onload=SetupEndShow() onunload=Unload()><center><p><font face=Tahoma color=white size=2><br><b>' + ENDSHOW_MESG + '</b></font></p></center></body></html>')
	doc.close()
}
function SetSldVisited(){ gDocTable[gCurSld-1].mVisited=true }
function IsSldVisited(){ return gDocTable[gCurSld-1].mVisited }
function hrefList( sldHref, visible, sldIdx )
{
	this.mSldHref= this.mNtsHref = sldHref
	this.mSldIdx = sldIdx
	this.mOrigVis= this.mVis = visible
	this.mVisited= false
}
var gDocTable = new Array(
   new hrefList("index_slide0013.htm", 1, 1),
   new hrefList("index_slide0760.htm", 1, 2),
   new hrefList("index_slide0322.htm", 1, 3),
   new hrefList("index_slide0012.htm", 1, 4),
   new hrefList("index_slide0328.htm", 1, 5),
   new hrefList("index_slide0757.htm", 1, 6),
   new hrefList("index_slide0025.htm", 1, 7),
   new hrefList("index_slide0133.htm", 1, 8),
   new hrefList("index_slide0035.htm", 1, 9),
   new hrefList("index_slide0030.htm", 1, 10),
   new hrefList("index_slide0039.htm", 1, 11),
   new hrefList("index_slide0041.htm", 1, 12),
   new hrefList("index_slide0047.htm", 1, 13),
   new hrefList("index_slide0048.htm", 1, 14),
   new hrefList("index_slide0955.htm", 1, 15),
   new hrefList("index_slide0051.htm", 1, 16),
   new hrefList("index_slide0713.htm", 1, 17),
   new hrefList("index_slide0712.htm", 1, 18),
   new hrefList("index_slide0054.htm", 1, 19),
   new hrefList("index_slide0055.htm", 1, 20),
   new hrefList("index_slide0700.htm", 1, 21),
   new hrefList("index_slide0057.htm", 1, 22),
   new hrefList("index_slide0059.htm", 1, 23),
   new hrefList("index_slide0060.htm", 1, 24),
   new hrefList("index_slide0061.htm", 1, 25),
   new hrefList("index_slide0062.htm", 1, 26),
   new hrefList("index_slide0136.htm", 1, 27),
   new hrefList("index_slide0064.htm", 1, 28),
   new hrefList("index_slide0065.htm", 1, 29),
   new hrefList("index_slide0066.htm", 1, 30),
   new hrefList("index_slide0067.htm", 1, 31),
   new hrefList("index_slide0068.htm", 1, 32),
   new hrefList("index_slide0069.htm", 1, 33),
   new hrefList("index_slide0070.htm", 1, 34),
   new hrefList("index_slide0071.htm", 1, 35),
   new hrefList("index_slide0072.htm", 1, 36),
   new hrefList("index_slide0073.htm", 1, 37),
   new hrefList("index_slide0074.htm", 1, 38),
   new hrefList("index_slide0075.htm", 1, 39),
   new hrefList("index_slide0076.htm", 1, 40),
   new hrefList("index_slide0077.htm", 1, 41),
   new hrefList("index_slide0078.htm", 1, 42),
   new hrefList("index_slide0138.htm", 1, 43),
   new hrefList("index_slide0330.htm", 1, 44),
   new hrefList("index_slide0154.htm", 1, 45),
   new hrefList("index_slide0233.htm", 1, 46),
   new hrefList("index_slide0235.htm", 1, 47),
   new hrefList("index_slide0331.htm", 1, 48),
   new hrefList("index_slide0373.htm", 1, 49),
   new hrefList("index_slide0414.htm", 1, 50),
   new hrefList("index_slide0155.htm", 1, 51),
   new hrefList("index_slide0692.htm", 1, 52),
   new hrefList("index_slide0693.htm", 1, 53),
   new hrefList("index_slide0332.htm", 1, 54),
   new hrefList("index_slide0412.htm", 1, 55),
   new hrefList("index_slide0415.htm", 1, 56),
   new hrefList("index_slide0156.htm", 1, 57),
   new hrefList("index_slide0237.htm", 1, 58),
   new hrefList("index_slide0251.htm", 1, 59),
   new hrefList("index_slide0333.htm", 1, 60),
   new hrefList("index_slide0374.htm", 1, 61),
   new hrefList("index_slide0416.htm", 1, 62),
   new hrefList("index_slide0448.htm", 1, 63),
   new hrefList("index_slide0239.htm", 1, 64),
   new hrefList("index_slide0252.htm", 1, 65),
   new hrefList("index_slide0334.htm", 1, 66),
   new hrefList("index_slide0375.htm", 1, 67),
   new hrefList("index_slide0417.htm", 1, 68),
   new hrefList("index_slide0158.htm", 1, 69),
   new hrefList("index_slide0240.htm", 1, 70),
   new hrefList("index_slide0253.htm", 1, 71),
   new hrefList("index_slide0335.htm", 1, 72),
   new hrefList("index_slide0376.htm", 1, 73),
   new hrefList("index_slide0418.htm", 1, 74),
   new hrefList("index_slide0160.htm", 1, 75),
   new hrefList("index_slide0241.htm", 1, 76),
   new hrefList("index_slide0254.htm", 1, 77),
   new hrefList("index_slide0336.htm", 1, 78),
   new hrefList("index_slide0377.htm", 1, 79),
   new hrefList("index_slide0419.htm", 1, 80),
   new hrefList("index_slide0161.htm", 1, 81),
   new hrefList("index_slide0242.htm", 1, 82),
   new hrefList("index_slide0255.htm", 1, 83),
   new hrefList("index_slide0337.htm", 1, 84),
   new hrefList("index_slide0378.htm", 1, 85),
   new hrefList("index_slide0420.htm", 1, 86),
   new hrefList("index_slide0162.htm", 1, 87),
   new hrefList("index_slide0243.htm", 1, 88),
   new hrefList("index_slide0256.htm", 1, 89),
   new hrefList("index_slide0338.htm", 1, 90),
   new hrefList("index_slide0379.htm", 1, 91),
   new hrefList("index_slide0421.htm", 1, 92),
   new hrefList("index_slide0163.htm", 1, 93),
   new hrefList("index_slide0544.htm", 1, 94),
   new hrefList("index_slide0545.htm", 1, 95),
   new hrefList("index_slide0339.htm", 1, 96),
   new hrefList("index_slide0380.htm", 1, 97),
   new hrefList("index_slide0422.htm", 1, 98),
   new hrefList("index_slide0164.htm", 1, 99),
   new hrefList("index_slide0245.htm", 1, 100),
   new hrefList("index_slide0258.htm", 1, 101),
   new hrefList("index_slide0340.htm", 1, 102),
   new hrefList("index_slide0381.htm", 1, 103),
   new hrefList("index_slide0423.htm", 1, 104),
   new hrefList("index_slide0165.htm", 1, 105),
   new hrefList("index_slide0694.htm", 1, 106),
   new hrefList("index_slide0695.htm", 1, 107),
   new hrefList("index_slide0341.htm", 1, 108),
   new hrefList("index_slide0382.htm", 1, 109),
   new hrefList("index_slide0952.htm", 1, 110),
   new hrefList("index_slide0166.htm", 1, 111),
   new hrefList("index_slide0247.htm", 1, 112),
   new hrefList("index_slide0260.htm", 1, 113),
   new hrefList("index_slide0342.htm", 1, 114),
   new hrefList("index_slide0383.htm", 1, 115),
   new hrefList("index_slide0425.htm", 1, 116),
   new hrefList("index_slide0167.htm", 1, 117),
   new hrefList("index_slide0248.htm", 1, 118),
   new hrefList("index_slide0261.htm", 1, 119),
   new hrefList("index_slide0343.htm", 1, 120),
   new hrefList("index_slide0384.htm", 1, 121),
   new hrefList("index_slide0426.htm", 1, 122),
   new hrefList("index_slide0168.htm", 1, 123),
   new hrefList("index_slide0249.htm", 1, 124),
   new hrefList("index_slide0262.htm", 1, 125),
   new hrefList("index_slide0344.htm", 1, 126),
   new hrefList("index_slide0385.htm", 1, 127),
   new hrefList("index_slide0427.htm", 1, 128),
   new hrefList("index_slide0169.htm", 1, 129),
   new hrefList("index_slide0264.htm", 1, 130),
   new hrefList("index_slide0697.htm", 1, 131),
   new hrefList("index_slide0345.htm", 1, 132),
   new hrefList("index_slide0386.htm", 1, 133),
   new hrefList("index_slide0428.htm", 1, 134),
   new hrefList("index_slide0170.htm", 1, 135),
   new hrefList("index_slide0265.htm", 1, 136),
   new hrefList("index_slide0290.htm", 1, 137),
   new hrefList("index_slide0346.htm", 1, 138),
   new hrefList("index_slide0387.htm", 1, 139),
   new hrefList("index_slide0429.htm", 1, 140),
   new hrefList("index_slide0171.htm", 1, 141),
   new hrefList("index_slide0266.htm", 1, 142),
   new hrefList("index_slide0291.htm", 1, 143),
   new hrefList("index_slide0347.htm", 1, 144),
   new hrefList("index_slide0388.htm", 1, 145),
   new hrefList("index_slide0430.htm", 1, 146),
   new hrefList("index_slide0172.htm", 1, 147),
   new hrefList("index_slide0267.htm", 1, 148),
   new hrefList("index_slide0292.htm", 1, 149),
   new hrefList("index_slide0348.htm", 1, 150),
   new hrefList("index_slide0389.htm", 1, 151),
   new hrefList("index_slide0431.htm", 1, 152),
   new hrefList("index_slide0173.htm", 1, 153),
   new hrefList("index_slide0268.htm", 1, 154),
   new hrefList("index_slide0293.htm", 1, 155),
   new hrefList("index_slide0349.htm", 1, 156),
   new hrefList("index_slide0390.htm", 1, 157),
   new hrefList("index_slide0432.htm", 1, 158),
   new hrefList("index_slide0174.htm", 1, 159),
   new hrefList("index_slide0269.htm", 1, 160),
   new hrefList("index_slide0294.htm", 1, 161),
   new hrefList("index_slide0350.htm", 1, 162),
   new hrefList("index_slide0391.htm", 1, 163),
   new hrefList("index_slide0433.htm", 1, 164),
   new hrefList("index_slide0175.htm", 1, 165),
   new hrefList("index_slide0270.htm", 1, 166),
   new hrefList("index_slide0295.htm", 1, 167),
   new hrefList("index_slide0351.htm", 1, 168),
   new hrefList("index_slide0392.htm", 1, 169),
   new hrefList("index_slide0434.htm", 1, 170),
   new hrefList("index_slide0176.htm", 1, 171),
   new hrefList("index_slide0271.htm", 1, 172),
   new hrefList("index_slide0296.htm", 1, 173),
   new hrefList("index_slide0352.htm", 1, 174),
   new hrefList("index_slide0393.htm", 1, 175),
   new hrefList("index_slide0435.htm", 1, 176),
   new hrefList("index_slide0177.htm", 1, 177),
   new hrefList("index_slide0272.htm", 1, 178),
   new hrefList("index_slide0297.htm", 1, 179),
   new hrefList("index_slide0353.htm", 1, 180),
   new hrefList("index_slide0394.htm", 1, 181),
   new hrefList("index_slide0436.htm", 1, 182),
   new hrefList("index_slide0178.htm", 1, 183),
   new hrefList("index_slide0273.htm", 1, 184),
   new hrefList("index_slide0298.htm", 1, 185),
   new hrefList("index_slide0354.htm", 1, 186),
   new hrefList("index_slide0395.htm", 1, 187),
   new hrefList("index_slide0437.htm", 1, 188),
   new hrefList("index_slide0179.htm", 1, 189),
   new hrefList("index_slide0274.htm", 1, 190),
   new hrefList("index_slide0299.htm", 1, 191),
   new hrefList("index_slide0355.htm", 1, 192),
   new hrefList("index_slide0396.htm", 1, 193),
   new hrefList("index_slide0438.htm", 1, 194),
   new hrefList("index_slide0180.htm", 1, 195),
   new hrefList("index_slide0275.htm", 1, 196),
   new hrefList("index_slide0300.htm", 1, 197),
   new hrefList("index_slide0356.htm", 1, 198),
   new hrefList("index_slide0397.htm", 1, 199),
   new hrefList("index_slide0439.htm", 1, 200),
   new hrefList("index_slide0181.htm", 1, 201),
   new hrefList("index_slide0276.htm", 1, 202),
   new hrefList("index_slide0301.htm", 1, 203),
   new hrefList("index_slide0357.htm", 1, 204),
   new hrefList("index_slide0398.htm", 1, 205),
   new hrefList("index_slide0440.htm", 1, 206),
   new hrefList("index_slide0182.htm", 1, 207),
   new hrefList("index_slide0277.htm", 1, 208),
   new hrefList("index_slide0302.htm", 1, 209),
   new hrefList("index_slide0358.htm", 1, 210),
   new hrefList("index_slide0399.htm", 1, 211),
   new hrefList("index_slide0441.htm", 1, 212),
   new hrefList("index_slide0183.htm", 1, 213),
   new hrefList("index_slide0278.htm", 1, 214),
   new hrefList("index_slide0303.htm", 1, 215),
   new hrefList("index_slide0359.htm", 1, 216),
   new hrefList("index_slide0400.htm", 1, 217),
   new hrefList("index_slide0442.htm", 1, 218),
   new hrefList("index_slide0184.htm", 1, 219),
   new hrefList("index_slide0279.htm", 1, 220),
   new hrefList("index_slide0304.htm", 1, 221),
   new hrefList("index_slide0360.htm", 1, 222),
   new hrefList("index_slide0401.htm", 1, 223),
   new hrefList("index_slide0443.htm", 1, 224),
   new hrefList("index_slide0185.htm", 1, 225),
   new hrefList("index_slide0280.htm", 1, 226),
   new hrefList("index_slide0305.htm", 1, 227),
   new hrefList("index_slide0361.htm", 1, 228),
   new hrefList("index_slide0402.htm", 1, 229),
   new hrefList("index_slide0444.htm", 1, 230),
   new hrefList("index_slide0186.htm", 1, 231),
   new hrefList("index_slide0281.htm", 1, 232),
   new hrefList("index_slide0306.htm", 1, 233),
   new hrefList("index_slide0362.htm", 1, 234),
   new hrefList("index_slide0403.htm", 1, 235),
   new hrefList("index_slide0953.htm", 1, 236),
   new hrefList("index_slide0187.htm", 1, 237),
   new hrefList("index_slide0282.htm", 1, 238),
   new hrefList("index_slide0307.htm", 1, 239),
   new hrefList("index_slide0365.htm", 1, 240),
   new hrefList("index_slide0404.htm", 1, 241),
   new hrefList("index_slide0446.htm", 1, 242),
   new hrefList("index_slide0188.htm", 1, 243),
   new hrefList("index_slide0283.htm", 1, 244),
   new hrefList("index_slide0308.htm", 1, 245),
   new hrefList("index_slide0189.htm", 1, 246),
   new hrefList("index_slide0284.htm", 1, 247),
   new hrefList("index_slide0309.htm", 1, 248),
   new hrefList("index_slide0210.htm", 1, 249),
   new hrefList("index_slide0285.htm", 1, 250),
   new hrefList("index_slide0710.htm", 1, 251),
   new hrefList("index_slide0211.htm", 1, 252),
   new hrefList("index_slide0286.htm", 1, 253),
   new hrefList("index_slide0311.htm", 1, 254),
   new hrefList("index_slide0212.htm", 1, 255),
   new hrefList("index_slide0312.htm", 1, 256),
   new hrefList("index_slide0315.htm", 1, 257),
   new hrefList("index_slide0213.htm", 1, 258),
   new hrefList("index_slide0313.htm", 1, 259),
   new hrefList("index_slide0316.htm", 1, 260),
   new hrefList("index_slide0214.htm", 1, 261),
   new hrefList("index_slide0546.htm", 1, 262),
   new hrefList("index_slide0547.htm", 1, 263),
   new hrefList("index_slide0520.htm", 1, 264),
   new hrefList("index_slide0532.htm", 1, 265),
   new hrefList("index_slide0754.htm", 1, 266),
   new hrefList("index_slide0521.htm", 1, 267),
   new hrefList("index_slide0533.htm", 1, 268),
   new hrefList("index_slide0711.htm", 1, 269),
   new hrefList("index_slide0522.htm", 1, 270),
   new hrefList("index_slide0534.htm", 1, 271),
   new hrefList("index_slide0616.htm", 1, 272),
   new hrefList("index_slide0531.htm", 1, 273),
   new hrefList("index_slide0535.htm", 1, 274),
   new hrefList("index_slide0617.htm", 1, 275),
   new hrefList("index_slide0530.htm", 1, 276),
   new hrefList("index_slide0536.htm", 1, 277),
   new hrefList("index_slide0618.htm", 1, 278),
   new hrefList("index_slide0529.htm", 1, 279),
   new hrefList("index_slide0537.htm", 1, 280),
   new hrefList("index_slide0619.htm", 1, 281),
   new hrefList("index_slide0528.htm", 1, 282),
   new hrefList("index_slide0538.htm", 1, 283),
   new hrefList("index_slide0620.htm", 1, 284),
   new hrefList("index_slide0527.htm", 1, 285),
   new hrefList("index_slide0539.htm", 1, 286),
   new hrefList("index_slide0621.htm", 1, 287),
   new hrefList("index_slide0526.htm", 1, 288),
   new hrefList("index_slide0540.htm", 1, 289),
   new hrefList("index_slide0622.htm", 1, 290),
   new hrefList("index_slide0525.htm", 1, 291),
   new hrefList("index_slide0541.htm", 1, 292),
   new hrefList("index_slide0623.htm", 1, 293),
   new hrefList("index_slide0524.htm", 1, 294),
   new hrefList("index_slide0542.htm", 1, 295),
   new hrefList("index_slide0624.htm", 1, 296),
   new hrefList("index_slide0523.htm", 1, 297),
   new hrefList("index_slide0543.htm", 1, 298),
   new hrefList("index_slide0625.htm", 1, 299),
   new hrefList("index_slide0717.htm", 1, 300),
   new hrefList("index_slide0722.htm", 1, 301),
   new hrefList("index_slide0732.htm", 1, 302),
   new hrefList("index_slide0718.htm", 1, 303),
   new hrefList("index_slide0724.htm", 1, 304),
   new hrefList("index_slide0733.htm", 1, 305),
   new hrefList("index_slide0719.htm", 1, 306),
   new hrefList("index_slide1305.htm", 1, 307),
   new hrefList("index_slide1306.htm", 1, 308),
   new hrefList("index_slide0720.htm", 1, 309),
   new hrefList("index_slide0728.htm", 1, 310),
   new hrefList("index_slide0735.htm", 1, 311),
   new hrefList("index_slide0721.htm", 1, 312),
   new hrefList("index_slide0730.htm", 1, 313),
   new hrefList("index_slide0736.htm", 1, 314),
   new hrefList("index_slide0737.htm", 1, 315),
   new hrefList("index_slide0742.htm", 1, 316),
   new hrefList("index_slide0745.htm", 1, 317),
   new hrefList("index_slide0738.htm", 1, 318),
   new hrefList("index_slide0744.htm", 1, 319),
   new hrefList("index_slide0746.htm", 1, 320),
   new hrefList("index_slide0739.htm", 1, 321),
   new hrefList("index_slide0747.htm", 1, 322),
   new hrefList("index_slide0750.htm", 1, 323),
   new hrefList("index_slide0740.htm", 1, 324),
   new hrefList("index_slide0748.htm", 1, 325),
   new hrefList("index_slide0751.htm", 1, 326),
   new hrefList("index_slide0741.htm", 1, 327),
   new hrefList("index_slide0749.htm", 1, 328),
   new hrefList("index_slide0752.htm", 1, 329),
   new hrefList("index_slide0802.htm", 1, 330),
   new hrefList("index_slide0803.htm", 1, 331),
   new hrefList("index_slide0804.htm", 1, 332),
   new hrefList("index_slide0827.htm", 1, 333),
   new hrefList("index_slide0829.htm", 1, 334),
   new hrefList("index_slide0833.htm", 1, 335),
   new hrefList("index_slide0828.htm", 1, 336),
   new hrefList("index_slide0830.htm", 1, 337),
   new hrefList("index_slide0834.htm", 1, 338),
   new hrefList("index_slide0831.htm", 1, 339),
   new hrefList("index_slide0832.htm", 1, 340),
   new hrefList("index_slide0835.htm", 1, 341),
   new hrefList("index_slide0836.htm", 1, 342),
   new hrefList("index_slide0837.htm", 1, 343),
   new hrefList("index_slide0838.htm", 1, 344),
   new hrefList("index_slide0548.htm", 1, 345),
   new hrefList("index_slide0486.htm", 1, 346),
   new hrefList("index_slide0582.htm", 1, 347),
   new hrefList("index_slide0626.htm", 1, 348),
   new hrefList("index_slide0487.htm", 1, 349),
   new hrefList("index_slide0583.htm", 1, 350),
   new hrefList("index_slide0627.htm", 1, 351),
   new hrefList("index_slide0488.htm", 1, 352),
   new hrefList("index_slide0584.htm", 1, 353),
   new hrefList("index_slide0628.htm", 1, 354),
   new hrefList("index_slide0489.htm", 1, 355),
   new hrefList("index_slide0585.htm", 1, 356),
   new hrefList("index_slide0629.htm", 1, 357),
   new hrefList("index_slide0490.htm", 1, 358),
   new hrefList("index_slide0586.htm", 1, 359),
   new hrefList("index_slide0630.htm", 1, 360),
   new hrefList("index_slide0491.htm", 1, 361),
   new hrefList("index_slide0587.htm", 1, 362),
   new hrefList("index_slide0631.htm", 1, 363),
   new hrefList("index_slide0492.htm", 1, 364),
   new hrefList("index_slide0588.htm", 1, 365),
   new hrefList("index_slide0632.htm", 1, 366),
   new hrefList("index_slide0493.htm", 1, 367),
   new hrefList("index_slide0589.htm", 1, 368),
   new hrefList("index_slide0633.htm", 1, 369),
   new hrefList("index_slide0512.htm", 1, 370),
   new hrefList("index_slide0590.htm", 1, 371),
   new hrefList("index_slide0634.htm", 1, 372),
   new hrefList("index_slide0494.htm", 1, 373),
   new hrefList("index_slide0591.htm", 1, 374),
   new hrefList("index_slide0635.htm", 1, 375),
   new hrefList("index_slide0495.htm", 1, 376),
   new hrefList("index_slide0592.htm", 1, 377),
   new hrefList("index_slide0636.htm", 1, 378),
   new hrefList("index_slide0513.htm", 1, 379),
   new hrefList("index_slide0637.htm", 1, 380),
   new hrefList("index_slide0593.htm", 1, 381),
   new hrefList("index_slide0514.htm", 1, 382),
   new hrefList("index_slide0594.htm", 1, 383),
   new hrefList("index_slide0638.htm", 1, 384),
   new hrefList("index_slide0515.htm", 1, 385),
   new hrefList("index_slide0595.htm", 1, 386),
   new hrefList("index_slide0639.htm", 1, 387),
   new hrefList("index_slide0496.htm", 1, 388),
   new hrefList("index_slide0596.htm", 1, 389),
   new hrefList("index_slide0640.htm", 1, 390),
   new hrefList("index_slide0516.htm", 1, 391),
   new hrefList("index_slide0597.htm", 1, 392),
   new hrefList("index_slide0641.htm", 1, 393),
   new hrefList("index_slide0497.htm", 1, 394),
   new hrefList("index_slide0598.htm", 1, 395),
   new hrefList("index_slide0642.htm", 1, 396),
   new hrefList("index_slide0498.htm", 1, 397),
   new hrefList("index_slide0599.htm", 1, 398),
   new hrefList("index_slide0643.htm", 1, 399),
   new hrefList("index_slide0499.htm", 1, 400),
   new hrefList("index_slide0600.htm", 1, 401),
   new hrefList("index_slide0644.htm", 1, 402),
   new hrefList("index_slide0500.htm", 1, 403),
   new hrefList("index_slide0601.htm", 1, 404),
   new hrefList("index_slide0645.htm", 1, 405),
   new hrefList("index_slide0501.htm", 1, 406),
   new hrefList("index_slide0602.htm", 1, 407),
   new hrefList("index_slide0841.htm", 1, 408),
   new hrefList("index_slide0502.htm", 1, 409),
   new hrefList("index_slide0603.htm", 1, 410),
   new hrefList("index_slide0647.htm", 1, 411),
   new hrefList("index_slide0517.htm", 1, 412),
   new hrefList("index_slide0604.htm", 1, 413),
   new hrefList("index_slide0648.htm", 1, 414),
   new hrefList("index_slide0503.htm", 1, 415),
   new hrefList("index_slide0605.htm", 1, 416),
   new hrefList("index_slide0649.htm", 1, 417),
   new hrefList("index_slide0504.htm", 1, 418),
   new hrefList("index_slide0606.htm", 1, 419),
   new hrefList("index_slide0650.htm", 1, 420),
   new hrefList("index_slide0505.htm", 1, 421),
   new hrefList("index_slide0607.htm", 1, 422),
   new hrefList("index_slide0651.htm", 1, 423),
   new hrefList("index_slide0506.htm", 1, 424),
   new hrefList("index_slide0608.htm", 1, 425),
   new hrefList("index_slide0652.htm", 1, 426),
   new hrefList("index_slide0518.htm", 1, 427),
   new hrefList("index_slide0609.htm", 1, 428),
   new hrefList("index_slide0653.htm", 1, 429),
   new hrefList("index_slide0507.htm", 1, 430),
   new hrefList("index_slide0610.htm", 1, 431),
   new hrefList("index_slide0654.htm", 1, 432),
   new hrefList("index_slide0508.htm", 1, 433),
   new hrefList("index_slide0611.htm", 1, 434),
   new hrefList("index_slide0655.htm", 1, 435),
   new hrefList("index_slide0509.htm", 1, 436),
   new hrefList("index_slide0612.htm", 1, 437),
   new hrefList("index_slide0656.htm", 1, 438),
   new hrefList("index_slide0519.htm", 1, 439),
   new hrefList("index_slide0613.htm", 1, 440),
   new hrefList("index_slide0657.htm", 1, 441),
   new hrefList("index_slide0510.htm", 1, 442),
   new hrefList("index_slide0614.htm", 1, 443),
   new hrefList("index_slide0658.htm", 1, 444),
   new hrefList("index_slide0511.htm", 1, 445),
   new hrefList("index_slide0672.htm", 1, 446),
   new hrefList("index_slide0685.htm", 1, 447),
   new hrefList("index_slide0659.htm", 1, 448),
   new hrefList("index_slide0673.htm", 1, 449),
   new hrefList("index_slide0680.htm", 1, 450),
   new hrefList("index_slide0660.htm", 1, 451),
   new hrefList("index_slide0674.htm", 1, 452),
   new hrefList("index_slide0681.htm", 1, 453),
   new hrefList("index_slide0675.htm", 1, 454),
   new hrefList("index_slide0676.htm", 1, 455),
   new hrefList("index_slide0682.htm", 1, 456),
   new hrefList("index_slide0662.htm", 1, 457),
   new hrefList("index_slide0677.htm", 1, 458),
   new hrefList("index_slide0683.htm", 1, 459),
   new hrefList("index_slide0663.htm", 1, 460),
   new hrefList("index_slide0678.htm", 1, 461),
   new hrefList("index_slide0684.htm", 1, 462),
   new hrefList("index_slide0714.htm", 1, 463),
   new hrefList("index_slide0715.htm", 1, 464),
   new hrefList("index_slide0716.htm", 1, 465),
   new hrefList("index_slide0762.htm", 1, 466),
   new hrefList("index_slide0767.htm", 1, 467),
   new hrefList("index_slide0772.htm", 1, 468),
   new hrefList("index_slide0763.htm", 1, 469),
   new hrefList("index_slide0768.htm", 1, 470),
   new hrefList("index_slide0773.htm", 1, 471),
   new hrefList("index_slide0764.htm", 1, 472),
   new hrefList("index_slide0769.htm", 1, 473),
   new hrefList("index_slide0774.htm", 1, 474),
   new hrefList("index_slide0765.htm", 1, 475),
   new hrefList("index_slide0770.htm", 1, 476),
   new hrefList("index_slide0775.htm", 1, 477),
   new hrefList("index_slide0776.htm", 1, 478),
   new hrefList("index_slide0783.htm", 1, 479),
   new hrefList("index_slide0795.htm", 1, 480),
   new hrefList("index_slide0777.htm", 1, 481),
   new hrefList("index_slide0785.htm", 1, 482),
   new hrefList("index_slide0796.htm", 1, 483),
   new hrefList("index_slide0778.htm", 1, 484),
   new hrefList("index_slide0787.htm", 1, 485),
   new hrefList("index_slide0797.htm", 1, 486),
   new hrefList("index_slide0779.htm", 1, 487),
   new hrefList("index_slide0789.htm", 1, 488),
   new hrefList("index_slide0798.htm", 1, 489),
   new hrefList("index_slide0780.htm", 1, 490),
   new hrefList("index_slide0791.htm", 1, 491),
   new hrefList("index_slide0799.htm", 1, 492),
   new hrefList("index_slide0781.htm", 1, 493),
   new hrefList("index_slide0793.htm", 1, 494),
   new hrefList("index_slide1070.htm", 1, 495),
   new hrefList("index_slide0805.htm", 1, 496),
   new hrefList("index_slide0809.htm", 1, 497),
   new hrefList("index_slide0813.htm", 1, 498),
   new hrefList("index_slide0806.htm", 1, 499),
   new hrefList("index_slide0810.htm", 1, 500),
   new hrefList("index_slide0814.htm", 1, 501),
   new hrefList("index_slide0807.htm", 1, 502),
   new hrefList("index_slide0811.htm", 1, 503),
   new hrefList("index_slide0815.htm", 1, 504),
   new hrefList("index_slide0808.htm", 1, 505),
   new hrefList("index_slide0812.htm", 1, 506),
   new hrefList("index_slide0816.htm", 1, 507),
   new hrefList("index_slide0817.htm", 1, 508),
   new hrefList("index_slide0820.htm", 1, 509),
   new hrefList("index_slide0823.htm", 1, 510),
   new hrefList("index_slide0818.htm", 1, 511),
   new hrefList("index_slide0821.htm", 1, 512),
   new hrefList("index_slide0824.htm", 1, 513),
   new hrefList("index_slide0819.htm", 1, 514),
   new hrefList("index_slide0822.htm", 1, 515),
   new hrefList("index_slide0825.htm", 1, 516),
   new hrefList("index_slide0849.htm", 1, 517),
   new hrefList("index_slide0859.htm", 1, 518),
   new hrefList("index_slide0860.htm", 1, 519),
   new hrefList("index_slide0850.htm", 1, 520),
   new hrefList("index_slide0855.htm", 1, 521),
   new hrefList("index_slide0861.htm", 1, 522),
   new hrefList("index_slide0851.htm", 1, 523),
   new hrefList("index_slide0856.htm", 1, 524),
   new hrefList("index_slide0862.htm", 1, 525),
   new hrefList("index_slide0852.htm", 1, 526),
   new hrefList("index_slide0857.htm", 1, 527),
   new hrefList("index_slide0863.htm", 1, 528),
   new hrefList("index_slide0853.htm", 1, 529),
   new hrefList("index_slide0858.htm", 1, 530),
   new hrefList("index_slide0864.htm", 1, 531),
   new hrefList("index_slide0866.htm", 1, 532),
   new hrefList("index_slide0873.htm", 1, 533),
   new hrefList("index_slide0880.htm", 1, 534),
   new hrefList("index_slide0867.htm", 1, 535),
   new hrefList("index_slide0874.htm", 1, 536),
   new hrefList("index_slide0881.htm", 1, 537),
   new hrefList("index_slide0868.htm", 1, 538),
   new hrefList("index_slide0879.htm", 1, 539),
   new hrefList("index_slide0882.htm", 1, 540),
   new hrefList("index_slide0869.htm", 1, 541),
   new hrefList("index_slide0876.htm", 1, 542),
   new hrefList("index_slide0883.htm", 1, 543),
   new hrefList("index_slide0870.htm", 1, 544),
   new hrefList("index_slide0877.htm", 1, 545),
   new hrefList("index_slide0884.htm", 1, 546),
   new hrefList("index_slide0889.htm", 1, 547),
   new hrefList("index_slide0894.htm", 1, 548),
   new hrefList("index_slide0899.htm", 1, 549),
   new hrefList("index_slide0893.htm", 1, 550),
   new hrefList("index_slide0898.htm", 1, 551),
   new hrefList("index_slide0900.htm", 1, 552),
   new hrefList("index_slide0890.htm", 1, 553),
   new hrefList("index_slide0895.htm", 1, 554),
   new hrefList("index_slide0901.htm", 1, 555),
   new hrefList("index_slide0891.htm", 1, 556),
   new hrefList("index_slide0896.htm", 1, 557),
   new hrefList("index_slide0902.htm", 1, 558),
   new hrefList("index_slide0892.htm", 1, 559),
   new hrefList("index_slide0897.htm", 1, 560),
   new hrefList("index_slide0903.htm", 1, 561),
   new hrefList("index_slide0906.htm", 1, 562),
   new hrefList("index_slide0910.htm", 1, 563),
   new hrefList("index_slide0914.htm", 1, 564),
   new hrefList("index_slide0907.htm", 1, 565),
   new hrefList("index_slide0911.htm", 1, 566),
   new hrefList("index_slide0915.htm", 1, 567),
   new hrefList("index_slide0908.htm", 1, 568),
   new hrefList("index_slide0912.htm", 1, 569),
   new hrefList("index_slide0916.htm", 1, 570),
   new hrefList("index_slide0909.htm", 1, 571),
   new hrefList("index_slide0913.htm", 1, 572),
   new hrefList("index_slide0917.htm", 1, 573),
   new hrefList("index_slide0925.htm", 1, 574),
   new hrefList("index_slide0926.htm", 1, 575),
   new hrefList("index_slide0927.htm", 1, 576),
   new hrefList("index_slide0928.htm", 1, 577),
   new hrefList("index_slide0929.htm", 1, 578),
   new hrefList("index_slide0930.htm", 1, 579),
   new hrefList("index_slide0931.htm", 1, 580),
   new hrefList("index_slide0932.htm", 1, 581),
   new hrefList("index_slide0933.htm", 1, 582),
   new hrefList("index_slide0934.htm", 1, 583),
   new hrefList("index_slide0935.htm", 1, 584),
   new hrefList("index_slide0936.htm", 1, 585),
   new hrefList("index_slide0937.htm", 1, 586),
   new hrefList("index_slide0938.htm", 1, 587),
   new hrefList("index_slide0939.htm", 1, 588),
   new hrefList("index_slide0940.htm", 1, 589),
   new hrefList("index_slide0941.htm", 1, 590),
   new hrefList("index_slide0942.htm", 1, 591),
   new hrefList("index_slide0956.htm", 1, 592),
   new hrefList("index_slide0961.htm", 1, 593),
   new hrefList("index_slide0965.htm", 1, 594),
   new hrefList("index_slide0958.htm", 1, 595),
   new hrefList("index_slide0962.htm", 1, 596),
   new hrefList("index_slide0966.htm", 1, 597),
   new hrefList("index_slide0957.htm", 1, 598),
   new hrefList("index_slide0963.htm", 1, 599),
   new hrefList("index_slide0967.htm", 1, 600),
   new hrefList("index_slide0959.htm", 1, 601),
   new hrefList("index_slide0964.htm", 1, 602),
   new hrefList("index_slide0968.htm", 1, 603),
   new hrefList("index_slide0969.htm", 1, 604),
   new hrefList("index_slide0970.htm", 1, 605),
   new hrefList("index_slide0973.htm", 1, 606),
   new hrefList("index_slide0971.htm", 1, 607),
   new hrefList("index_slide0972.htm", 1, 608),
   new hrefList("index_slide0974.htm", 1, 609),
   new hrefList("index_slide0986.htm", 1, 610),
   new hrefList("index_slide0990.htm", 1, 611),
   new hrefList("index_slide0994.htm", 1, 612),
   new hrefList("index_slide0989.htm", 1, 613),
   new hrefList("index_slide0991.htm", 1, 614),
   new hrefList("index_slide0995.htm", 1, 615),
   new hrefList("index_slide0987.htm", 1, 616),
   new hrefList("index_slide0992.htm", 1, 617),
   new hrefList("index_slide0996.htm", 1, 618),
   new hrefList("index_slide0988.htm", 1, 619),
   new hrefList("index_slide0993.htm", 1, 620),
   new hrefList("index_slide0997.htm", 1, 621),
   new hrefList("index_slide0999.htm", 1, 622),
   new hrefList("index_slide1005.htm", 1, 623),
   new hrefList("index_slide1010.htm", 1, 624),
   new hrefList("index_slide1001.htm", 1, 625),
   new hrefList("index_slide1006.htm", 1, 626),
   new hrefList("index_slide1011.htm", 1, 627),
   new hrefList("index_slide1002.htm", 1, 628),
   new hrefList("index_slide1007.htm", 1, 629),
   new hrefList("index_slide1012.htm", 1, 630),
   new hrefList("index_slide1003.htm", 1, 631),
   new hrefList("index_slide1008.htm", 1, 632),
   new hrefList("index_slide1013.htm", 1, 633),
   new hrefList("index_slide1004.htm", 1, 634),
   new hrefList("index_slide1009.htm", 1, 635),
   new hrefList("index_slide1014.htm", 1, 636),
   new hrefList("index_slide1015.htm", 1, 637),
   new hrefList("index_slide1019.htm", 1, 638),
   new hrefList("index_slide1024.htm", 1, 639),
   new hrefList("index_slide1018.htm", 1, 640),
   new hrefList("index_slide1020.htm", 1, 641),
   new hrefList("index_slide1025.htm", 1, 642),
   new hrefList("index_slide1017.htm", 1, 643),
   new hrefList("index_slide1023.htm", 1, 644),
   new hrefList("index_slide1174.htm", 1, 645),
   new hrefList("index_slide1016.htm", 1, 646),
   new hrefList("index_slide1022.htm", 1, 647),
   new hrefList("index_slide1027.htm", 1, 648),
   new hrefList("index_slide1034.htm", 1, 649),
   new hrefList("index_slide1035.htm", 1, 650),
   new hrefList("index_slide1039.htm", 1, 651),
   new hrefList("index_slide1028.htm", 1, 652),
   new hrefList("index_slide1036.htm", 1, 653),
   new hrefList("index_slide1040.htm", 1, 654),
   new hrefList("index_slide1030.htm", 1, 655),
   new hrefList("index_slide1037.htm", 1, 656),
   new hrefList("index_slide1041.htm", 1, 657),
   new hrefList("index_slide1031.htm", 1, 658),
   new hrefList("index_slide1038.htm", 1, 659),
   new hrefList("index_slide1042.htm", 1, 660),
   new hrefList("index_slide1045.htm", 1, 661),
   new hrefList("index_slide1051.htm", 1, 662),
   new hrefList("index_slide1054.htm", 1, 663),
   new hrefList("index_slide1047.htm", 1, 664),
   new hrefList("index_slide1052.htm", 1, 665),
   new hrefList("index_slide1055.htm", 1, 666),
   new hrefList("index_slide1046.htm", 1, 667),
   new hrefList("index_slide1053.htm", 1, 668),
   new hrefList("index_slide1056.htm", 1, 669),
   new hrefList("index_slide1061.htm", 1, 670),
   new hrefList("index_slide1072.htm", 1, 671),
   new hrefList("index_slide1078.htm", 1, 672),
   new hrefList("index_slide1063.htm", 1, 673),
   new hrefList("index_slide1073.htm", 1, 674),
   new hrefList("index_slide1079.htm", 1, 675),
   new hrefList("index_slide1064.htm", 1, 676),
   new hrefList("index_slide1074.htm", 1, 677),
   new hrefList("index_slide1080.htm", 1, 678),
   new hrefList("index_slide1065.htm", 1, 679),
   new hrefList("index_slide1075.htm", 1, 680),
   new hrefList("index_slide1081.htm", 1, 681),
   new hrefList("index_slide1066.htm", 1, 682),
   new hrefList("index_slide1076.htm", 1, 683),
   new hrefList("index_slide1082.htm", 1, 684),
   new hrefList("index_slide1067.htm", 1, 685),
   new hrefList("index_slide1077.htm", 1, 686),
   new hrefList("index_slide1083.htm", 1, 687),
   new hrefList("index_slide1084.htm", 1, 688),
   new hrefList("index_slide1090.htm", 1, 689),
   new hrefList("index_slide1096.htm", 1, 690),
   new hrefList("index_slide1085.htm", 1, 691),
   new hrefList("index_slide1091.htm", 1, 692),
   new hrefList("index_slide1097.htm", 1, 693),
   new hrefList("index_slide1086.htm", 1, 694),
   new hrefList("index_slide1092.htm", 1, 695),
   new hrefList("index_slide1098.htm", 1, 696),
   new hrefList("index_slide1087.htm", 1, 697),
   new hrefList("index_slide1095.htm", 1, 698),
   new hrefList("index_slide1099.htm", 1, 699),
   new hrefList("index_slide1088.htm", 1, 700),
   new hrefList("index_slide1094.htm", 1, 701),
   new hrefList("index_slide1100.htm", 1, 702),
   new hrefList("index_slide1101.htm", 1, 703),
   new hrefList("index_slide1111.htm", 1, 704),
   new hrefList("index_slide1121.htm", 1, 705),
   new hrefList("index_slide1103.htm", 1, 706),
   new hrefList("index_slide1112.htm", 1, 707),
   new hrefList("index_slide1122.htm", 1, 708),
   new hrefList("index_slide1104.htm", 1, 709),
   new hrefList("index_slide1113.htm", 1, 710),
   new hrefList("index_slide1123.htm", 1, 711),
   new hrefList("index_slide1105.htm", 1, 712),
   new hrefList("index_slide1120.htm", 1, 713),
   new hrefList("index_slide1124.htm", 1, 714),
   new hrefList("index_slide1106.htm", 1, 715),
   new hrefList("index_slide1115.htm", 1, 716),
   new hrefList("index_slide1125.htm", 1, 717),
   new hrefList("index_slide1107.htm", 1, 718),
   new hrefList("index_slide1116.htm", 1, 719),
   new hrefList("index_slide1126.htm", 1, 720),
   new hrefList("index_slide1108.htm", 1, 721),
   new hrefList("index_slide1117.htm", 1, 722),
   new hrefList("index_slide1127.htm", 1, 723),
   new hrefList("index_slide1109.htm", 1, 724),
   new hrefList("index_slide1118.htm", 1, 725),
   new hrefList("index_slide1128.htm", 1, 726),
   new hrefList("index_slide1110.htm", 1, 727),
   new hrefList("index_slide1119.htm", 1, 728),
   new hrefList("index_slide1129.htm", 1, 729),
   new hrefList("index_slide1130.htm", 1, 730),
   new hrefList("index_slide1136.htm", 1, 731),
   new hrefList("index_slide1143.htm", 1, 732),
   new hrefList("index_slide1132.htm", 1, 733),
   new hrefList("index_slide1137.htm", 1, 734),
   new hrefList("index_slide1144.htm", 1, 735),
   new hrefList("index_slide1133.htm", 1, 736),
   new hrefList("index_slide1138.htm", 1, 737),
   new hrefList("index_slide1145.htm", 1, 738),
   new hrefList("index_slide1134.htm", 1, 739),
   new hrefList("index_slide1139.htm", 1, 740),
   new hrefList("index_slide1146.htm", 1, 741),
   new hrefList("index_slide1135.htm", 1, 742),
   new hrefList("index_slide1142.htm", 1, 743),
   new hrefList("index_slide1147.htm", 1, 744),
   new hrefList("index_slide1131.htm", 1, 745),
   new hrefList("index_slide1140.htm", 1, 746),
   new hrefList("index_slide1148.htm", 1, 747),
   new hrefList("index_slide1149.htm", 1, 748),
   new hrefList("index_slide1150.htm", 1, 749),
   new hrefList("index_slide1151.htm", 1, 750),
   new hrefList("index_slide1152.htm", 1, 751),
   new hrefList("index_slide1153.htm", 1, 752),
   new hrefList("index_slide1154.htm", 1, 753),
   new hrefList("index_slide1155.htm", 1, 754),
   new hrefList("index_slide1161.htm", 1, 755),
   new hrefList("index_slide1168.htm", 1, 756),
   new hrefList("index_slide1157.htm", 1, 757),
   new hrefList("index_slide1162.htm", 1, 758),
   new hrefList("index_slide1169.htm", 1, 759),
   new hrefList("index_slide1158.htm", 1, 760),
   new hrefList("index_slide1163.htm", 1, 761),
   new hrefList("index_slide1170.htm", 1, 762),
   new hrefList("index_slide1156.htm", 1, 763),
   new hrefList("index_slide1164.htm", 1, 764),
   new hrefList("index_slide1171.htm", 1, 765),
   new hrefList("index_slide1159.htm", 1, 766),
   new hrefList("index_slide1165.htm", 1, 767),
   new hrefList("index_slide1172.htm", 1, 768),
   new hrefList("index_slide1160.htm", 1, 769),
   new hrefList("index_slide1167.htm", 1, 770),
   new hrefList("index_slide1173.htm", 1, 771),
   new hrefList("index_slide1175.htm", 1, 772),
   new hrefList("index_slide1181.htm", 1, 773),
   new hrefList("index_slide1186.htm", 1, 774),
   new hrefList("index_slide1177.htm", 1, 775),
   new hrefList("index_slide1182.htm", 1, 776),
   new hrefList("index_slide1187.htm", 1, 777),
   new hrefList("index_slide1178.htm", 1, 778),
   new hrefList("index_slide1183.htm", 1, 779),
   new hrefList("index_slide1188.htm", 1, 780),
   new hrefList("index_slide1179.htm", 1, 781),
   new hrefList("index_slide1184.htm", 1, 782),
   new hrefList("index_slide1189.htm", 1, 783),
   new hrefList("index_slide1180.htm", 1, 784),
   new hrefList("index_slide1185.htm", 1, 785),
   new hrefList("index_slide1190.htm", 1, 786),
   new hrefList("index_slide1191.htm", 1, 787),
   new hrefList("index_slide1192.htm", 1, 788),
   new hrefList("index_slide1193.htm", 1, 789),
   new hrefList("index_slide1194.htm", 1, 790),
   new hrefList("index_slide1198.htm", 1, 791),
   new hrefList("index_slide1202.htm", 1, 792),
   new hrefList("index_slide1195.htm", 1, 793),
   new hrefList("index_slide1199.htm", 1, 794),
   new hrefList("index_slide1203.htm", 1, 795),
   new hrefList("index_slide1196.htm", 1, 796),
   new hrefList("index_slide1200.htm", 1, 797),
   new hrefList("index_slide1204.htm", 1, 798),
   new hrefList("index_slide1205.htm", 1, 799),
   new hrefList("index_slide1210.htm", 1, 800),
   new hrefList("index_slide1216.htm", 1, 801),
   new hrefList("index_slide1206.htm", 1, 802),
   new hrefList("index_slide1211.htm", 1, 803),
   new hrefList("index_slide1217.htm", 1, 804),
   new hrefList("index_slide1207.htm", 1, 805),
   new hrefList("index_slide1215.htm", 1, 806),
   new hrefList("index_slide1218.htm", 1, 807),
   new hrefList("index_slide1208.htm", 1, 808),
   new hrefList("index_slide1213.htm", 1, 809),
   new hrefList("index_slide1219.htm", 1, 810),
   new hrefList("index_slide1209.htm", 1, 811),
   new hrefList("index_slide1214.htm", 1, 812),
   new hrefList("index_slide1220.htm", 1, 813),
   new hrefList("index_slide1221.htm", 1, 814),
   new hrefList("index_slide1228.htm", 1, 815),
   new hrefList("index_slide1235.htm", 1, 816),
   new hrefList("index_slide1224.htm", 1, 817),
   new hrefList("index_slide1229.htm", 1, 818),
   new hrefList("index_slide1232.htm", 1, 819),
   new hrefList("index_slide1225.htm", 1, 820),
   new hrefList("index_slide1230.htm", 1, 821),
   new hrefList("index_slide1233.htm", 1, 822),
   new hrefList("index_slide1226.htm", 1, 823),
   new hrefList("index_slide1231.htm", 1, 824),
   new hrefList("index_slide1234.htm", 1, 825),
   new hrefList("index_slide1236.htm", 1, 826),
   new hrefList("index_slide1238.htm", 1, 827),
   new hrefList("index_slide1240.htm", 1, 828),
   new hrefList("index_slide1237.htm", 1, 829),
   new hrefList("index_slide1239.htm", 1, 830),
   new hrefList("index_slide1241.htm", 1, 831),
   new hrefList("index_slide1242.htm", 1, 832),
   new hrefList("index_slide1248.htm", 1, 833),
   new hrefList("index_slide1253.htm", 1, 834),
   new hrefList("index_slide1244.htm", 1, 835),
   new hrefList("index_slide1249.htm", 1, 836),
   new hrefList("index_slide1254.htm", 1, 837),
   new hrefList("index_slide1245.htm", 1, 838),
   new hrefList("index_slide1250.htm", 1, 839),
   new hrefList("index_slide1255.htm", 1, 840),
   new hrefList("index_slide1246.htm", 1, 841),
   new hrefList("index_slide1251.htm", 1, 842),
   new hrefList("index_slide1256.htm", 1, 843),
   new hrefList("index_slide1247.htm", 1, 844),
   new hrefList("index_slide1252.htm", 1, 845),
   new hrefList("index_slide1257.htm", 1, 846),
   new hrefList("index_slide1258.htm", 1, 847),
   new hrefList("index_slide1259.htm", 1, 848),
   new hrefList("index_slide1260.htm", 1, 849),
   new hrefList("index_slide1263.htm", 1, 850),
   new hrefList("index_slide1270.htm", 1, 851),
   new hrefList("index_slide1276.htm", 1, 852),
   new hrefList("index_slide1265.htm", 1, 853),
   new hrefList("index_slide1271.htm", 1, 854),
   new hrefList("index_slide1277.htm", 1, 855),
   new hrefList("index_slide1266.htm", 1, 856),
   new hrefList("index_slide1272.htm", 1, 857),
   new hrefList("index_slide1278.htm", 1, 858),
   new hrefList("index_slide1267.htm", 1, 859),
   new hrefList("index_slide1273.htm", 1, 860),
   new hrefList("index_slide1279.htm", 1, 861),
   new hrefList("index_slide1268.htm", 1, 862),
   new hrefList("index_slide1274.htm", 1, 863),
   new hrefList("index_slide1280.htm", 1, 864),
   new hrefList("index_slide1269.htm", 1, 865),
   new hrefList("index_slide1275.htm", 1, 866),
   new hrefList("index_slide1281.htm", 1, 867),
   new hrefList("index_slide1283.htm", 1, 868),
   new hrefList("index_slide1291.htm", 1, 869),
   new hrefList("index_slide1298.htm", 1, 870),
   new hrefList("index_slide1285.htm", 1, 871),
   new hrefList("index_slide1294.htm", 1, 872),
   new hrefList("index_slide1299.htm", 1, 873),
   new hrefList("index_slide1286.htm", 1, 874),
   new hrefList("index_slide1295.htm", 1, 875),
   new hrefList("index_slide1300.htm", 1, 876),
   new hrefList("index_slide1287.htm", 1, 877),
   new hrefList("index_slide1296.htm", 1, 878),
   new hrefList("index_slide1301.htm", 1, 879),
   new hrefList("index_slide1288.htm", 1, 880),
   new hrefList("index_slide1297.htm", 1, 881),
   new hrefList("index_slide1302.htm", 1, 882),
   new hrefList("index_slide1289.htm", 1, 883),
   new hrefList("index_slide1292.htm", 1, 884),
   new hrefList("index_slide1303.htm", 1, 885),
   new hrefList("index_slide1290.htm", 1, 886),
   new hrefList("index_slide1293.htm", 1, 887),
   new hrefList("index_slide1304.htm", 1, 888),
   new hrefList("index_slide1307.htm", 1, 889),
   new hrefList("index_slide1317.htm", 1, 890),
   new hrefList("index_slide1319.htm", 1, 891),
   new hrefList("index_slide1308.htm", 1, 892),
   new hrefList("index_slide1318.htm", 1, 893),
   new hrefList("index_slide1320.htm", 1, 894),
   new hrefList("index_slide1309.htm", 1, 895),
   new hrefList("index_slide1314.htm", 1, 896),
   new hrefList("index_slide1321.htm", 1, 897),
   new hrefList("index_slide1310.htm", 1, 898),
   new hrefList("index_slide1315.htm", 1, 899),
   new hrefList("index_slide1322.htm", 1, 900),
   new hrefList("index_slide1311.htm", 1, 901),
   new hrefList("index_slide1316.htm", 1, 902),
   new hrefList("index_slide1323.htm", 1, 903),
   new hrefList("index_slide1324.htm", 1, 904),
   new hrefList("index_slide1325.htm", 1, 905),
   new hrefList("index_slide1326.htm", 1, 906),
   new hrefList("index_slide0943.htm", 1, 907),
   new hrefList("index_slide0944.htm", 1, 908),
   new hrefList("index_slide0978.htm", 1, 909),
   new hrefList("index_slide0946.htm", 1, 910),
   new hrefList("index_slide0947.htm", 1, 911),
   new hrefList("index_slide0975.htm", 1, 912),
   new hrefList("index_slide0976.htm", 1, 913),
   new hrefList("index_slide0977.htm", 1, 914),
   new hrefList("index_slide0998.htm", 1, 915),
   new hrefList("index_slide1043.htm", 1, 916),
   new hrefList("index_slide1044.htm", 1, 917),
   new hrefList("index_slide1071.htm", 1, 918),
   new hrefList("index_slide0948.htm", 1, 919),
   new hrefList("index_slide0949.htm", 1, 920),
   new hrefList("index_slide0950.htm", 1, 921),
   new hrefList("index_slide0984.htm", 1, 922),
   new hrefList("index_slide0985.htm", 1, 923)
);

function ImgBtn( oId,bId,w,action )
{
	var t=this
	t.Perform    = _IBP
	t.SetActive  = _IBSetA
	t.SetInactive= _IBSetI
	t.SetPressed = _IBSetP
	t.SetDisabled= _IBSetD
	t.Enabled    = _IBSetE
	t.ChangeIcon = null
	t.UserAction = action
	t.ChgState   = _IBUI
	t.mObjId   = oId
	t.mBorderId= bId
	t.mWidth   = w
	t.mIsOn    = t.mCurState = 0
}
function _IBSetA()
{
	if( this.mIsOn ) {
		obj=this.ChgState( gHiliteClr,gShadowClr,2 )
		obj.style.posTop=0
	}
}
function _IBSetI()
{
	if( this.mIsOn ) {
		obj=this.ChgState( gFaceClr,gFaceClr,1 )
		obj.style.posTop=0 
	}
}
function _IBSetP()
{
	if( this.mIsOn ) {
		obj=this.ChgState( gShadowClr,gHiliteClr,2 )
		obj.style.posLeft+=1; obj.style.posTop+=1
	}
}
function _IBSetD()
{  
	obj=this.ChgState( gFaceClr,gFaceClr,0 )
	obj.style.posTop=0 
}
function _IBSetE( state )
{
	var t=this
	GetObj( t.mBorderId ).style.visibility="visible"
	if( state != t.mIsOn ) {
		t.mIsOn=state
		if( state )
			t.SetInactive()
		else
			t.SetDisabled()
	}
}
function _IBP()
{
	var t=this
	if( t.mIsOn ) {
		if( t.UserAction != null )
			t.UserAction()
		if( t.ChangeIcon ) {
			obj=GetObj(t.mObjId)
			if( t.ChangeIcon() )
				obj.style.posLeft=obj.style.posLeft+(t.mCurState-4)*t.mWidth
			else
				obj.style.posLeft=obj.style.posLeft+(t.mCurState-0)*t.mWidth
		}
		t.SetActive()
	}  
}
function _IBUI( clr1,clr2,nextState )
{
	var t=this
	SetBorder( GetObj( t.mBorderId ),clr1,clr2 )
	obj=GetObj( t.mObjId )
	obj.style.posLeft=obj.style.posLeft+(t.mCurState-nextState)*t.mWidth-obj.style.posTop
	t.mCurState=nextState
	return obj
}
function TxtBtn( oId,oeId,action,chkState )
{
	var t=this
	t.Perform    = _TBP
	t.SetActive  = _TBSetA
	t.SetInactive= _TBSetI
	t.SetPressed = _TBSetP
	t.SetDisabled= _TBSetD
	t.SetEnabled = _TBSetE
	t.GetState   = chkState
	t.UserAction = action
	t.ChgState   = _TBUI
	t.mObjId      = oId
	t.m_elementsId= oeId
	t.mIsOn       = 1
}
function _TBSetA()
{
	var t=this
	if( t.mIsOn && !t.GetState() )
		t.ChgState( gHiliteClr,gShadowClr,0,0 )
}
function _TBSetI()
{
	var t=this
	if( t.mIsOn && !t.GetState() )
		t.ChgState( gFaceClr,gFaceClr,0,0 )
}
function _TBSetP()
{
	if( this.mIsOn )
		this.ChgState( gShadowClr,gHiliteClr,1,1 )
}
function _TBSetD()
{   
	this.ChgState( gFaceClr,gFaceClr,0,0 )
	this.mIsOn = 0
}
function _TBSetE()
{
	var t=this
	if( !t.GetState() )
		t.ChgState( gFaceClr,gFaceClr,0,0 )
	else
		t.ChgState( gShadowClr,gHiliteClr,1,1 )
	t.mIsOn = 1
}
function _TBP()
{
	var t=this
	if( t.mIsOn ) { 
		if( t.UserAction != null )
			t.UserAction()
		if( t.GetState() )
			t.SetPressed()
		else
			t.SetActive()
	}  
}
function _TBUI( clr1,clr2,lOffset,tOffset )
{
	SetBorder( GetObj( this.mObjId ),clr1,clr2 )
	Offset( GetObj( this.m_elementsId ),lOffset,tOffset )
}
function GetObj( objId ){ return document.all.item( objId ) }
function Offset( obj, top, left ){ obj.style.top=top; obj.style.left=left }
function SetBorder( obj, upperLeft, lowerRight )
{
	s=obj.style;
	s.borderStyle      = "solid"
	s.borderWidth      = 1 
	s.borderLeftColor  = s.borderTopColor = upperLeft
	s.borderBottomColor= s.borderRightColor = lowerRight
}
function GetBtnObj(){ return gBtnArr[window.event.srcElement.id] }
function BtnOnOver(){ b=GetBtnObj(); if( b != null ) b.SetActive() }
function BtnOnDown(){ b=GetBtnObj(); if( b != null ) b.SetPressed() }
function BtnOnOut(){ b=GetBtnObj(); if( b != null ) b.SetInactive() }
function BtnOnUp()
{
	b=GetBtnObj()
	if( b != null )
		b.Perform()
	else
		Upd()
}
function GetNtsState(){ return parent.gNtsOpen }
function GetOtlState(){ return parent.gOtlOpen }
function GetOtlTxtState(){ return parent.gOtlTxtExp }
function NtsBtnSetFlag( fVal )
{
	s=document.all.item( this.m_flagId ).style
	s.display="none"
	if( fVal )
		s.display=""
	else
		s.display="none"
}

var gHiliteClr="THREEDHIGHLIGHT",gShadowClr="THREEDSHADOW",gFaceClr="THREEDFACE"
var gBtnArr = new Array()
gBtnArr["nb_otl"] = new TxtBtn( "nb_otl","nb_otlElem",parent.ToggleOtlPane,GetOtlState )
gBtnArr["nb_nts"] = new TxtBtn( "nb_nts","nb_ntsElem",parent.ToggleNtsPane,GetNtsState )
gBtnArr["nb_prev"]= new ImgBtn( "nb_prev","nb_prevBorder",30,parent.GoToPrevSld )
gBtnArr["nb_next"]= new ImgBtn( "nb_next","nb_nextBorder",30,parent.GoToNextSld )
gBtnArr["nb_sldshw"]= new ImgBtn( "nb_sldshw","nb_sldshwBorder",18,parent.FullScreen )
gBtnArr["nb_voice"]  = new ImgBtn( "nb_voice","nb_voiceBorder",18,parent.ToggleVNarration )
gBtnArr["nb_otlTxt"]= new ImgBtn( "nb_otlTxt","nb_otlTxtBorder",23,parent.ToggleOtlText )
gBtnArr["nb_nts"].m_flagId= "notes_flag"
gBtnArr["nb_nts"].SetFlag = NtsBtnSetFlag
gBtnArr["nb_otlTxt"].ChangeIcon= GetOtlTxtState
var sNext="Siguiente",sPrev="Anterior",sEnd="Fin de la presentación",sFont="Arial"
function ShowMenu()
{
	BuildMenu();
	var doc=PPTSld.document.body,x=PPTSld.event.clientX+doc.scrollLeft,y=PPTSld.event.clientY+doc.scrollTop

	m = PPTSld.document.all.item("ctxtmenu")
	m.style.pixelLeft=x
	if( (x+m.scrollWidth > doc.clientWidth)&&(x-m.scrollWidth > 0) )
		m.style.pixelLeft=x-m.scrollWidth

	m.style.pixelTop=y
	if( (y+m.scrollHeight > doc.clientHeight)&&(y-m.scrollHeight > 0) )
		m.style.pixelTop=y-m.scrollHeight

	m.style.display=""
}
function _CM()
{
	if( !parent.IsFullScrMode() ) return;
	if(!PPTSld.event.ctrlKey) {
		ShowMenu()
		return false
	} else
		HideMenu()
}
function BuildMenu()
{
	if( PPTSld.document.all.item("ctxtmenu") ) return

	var mObj=CreateItem( PPTSld.document.body )
	mObj.id="ctxtmenu"
	var s=mObj.style
	s.position="absolute"
	s.cursor="default"
	s.width="100px"
	SetCMBorder(mObj,"menu","black")

	var iObj=CreateItem( mObj )
	SetCMBorder( iObj, "threedhighlight","threedshadow" )
	iObj.style.padding=2
	CreateMenuItem( iObj,sNext,M_GoNextSld,M_True )
	CreateMenuItem( iObj,sPrev,M_GoPrevSld,M_HasPrevSld )
	var sObj=CreateItem( iObj )
	SetCMBorder(sObj,"menu","menu")
	var s=sObj.style
	s.borderTopColor="threedshadow"
	s.borderBottomColor="threedhighlight"
	s.height=1
	s.fontSize="0px"
	CreateMenuItem( iObj,sEnd,M_End,M_True )
}
function Highlight() { ChangeClr("activecaption","threedhighlight") }
function Deselect() { ChangeClr("threedface","menutext") }
function Perform()
{
	e=PPTSld.event.srcElement
	if( e.type=="menuitem" && e.IsActive() )
		e.Action()
	else
		PPTSld.event.cancelBubble=true
}
function ChangeClr( bg,clr )
{
	e=PPTSld.event.srcElement
	if( e.type=="menuitem" && e.IsActive() ) {
		e.style.backgroundColor=bg
		e.style.color=clr
	}
}

function M_HasPrevSld() { return( parent.HasPrevSld() ) }
function M_GoNextSld() { if( gIsEndShow ) M_End(); else GoToNextSld() }
function M_GoPrevSld() { if( gIsEndShow ) { history.back(); PPTSld.event.cancelBubble=true; } else GoToPrevSld() }
function M_True() { return true }
function M_End() { window.close( self ) }
function CreateMenuItem( node,text,action,eval )
{
	var e=CreateItem( node )
	e.type="menuitem"
	e.Action=action
	e.IsActive=eval
	e.innerHTML=text

	if( !e.IsActive() )
		e.style.color="threedshadow"
	e.onclick=Perform
	e.onmouseover=Highlight
	e.onmouseout=Deselect
	s=e.style;
	s.fontFamily=sFont
	s.fontSize="8pt"
	s.paddingLeft=2
}
function CreateItem( node )
{
	var elem=PPTSld.document.createElement("DIV")
	node.insertBefore( elem )
	return elem
}
function SetCMBorder( o,ltClr,rbClr )
{
	var s=o.style
	s.backgroundColor="menu"
	s.borderStyle="solid"
	s.borderWidth=1
	s.borderColor=ltClr+" "+rbClr+" "+rbClr+" "+ltClr
}