// KGA Moved Initialization from auditorium.phtml
// Initialize variables
// var thisMediaPresType = window.opener.currentPresType;
var mpVidHighUrl=''
var mpVidLowUrl='';
var mpAudUrl='';
var rpVidHighUrl=''
var rpVidLowUrl='';
var rpAudUrl='';
var streamname = "";
var media = "";
var chartstate=0;
var cansync=0;
var originalsync=0; // variable to preserve initial state of cansync
var prestype = "";
var saminame ="" ;
var auditoriumtitle = "";
var auditoriumtitlesub = "";
var hascc=0;
var refreshchart=0;
var refreshchartinterval=0;
var slideclosed="";
var slidefinished="";
var chartwidth="";
var chartheight="";
var agenda = new Array(); // agenda object
// end initialization. Load SSI with event specific data now
eventDir="/investor/events/global0606/";
configPath= eventDir + "webcastini";
// KGA Custom configs for each "sub event"
configPathSession1= eventDir + "session1/webcastini";
configPathSession2= eventDir + "session2/webcastini";
// KGA Custom configs for supplemental videos
configPathVid1= eventDir + "video1/webcastini";
configPathVid2= eventDir + "video2/webcastini";
configPathVid3= eventDir + "video3/webcastini";
configPathVid4= eventDir + "video4/webcastini";
configPathVid5= eventDir + "video5/webcastini";
configPathVid6= eventDir + "video6/webcastini";
configPathVid7= eventDir + "video7/webcastini";
configPathVid8= eventDir + "video8/webcastini";
configPathVid9= eventDir + "video9/webcastini";
configPathVid10= eventDir + "video10/webcastini";
configPathVid11= eventDir + "video11/webcastini";
configPathVid12= eventDir + "video12/webcastini";
configPathVid13= eventDir + "video13/webcastini";
speakerBios= eventDir + "speaker_bios.phtml";
presDir=eventDir + "presentation/";
//mpVidHighUrl = eventDir + 'stream_meta/wm_vidhigh.asx';
//mpVidLowUrl = eventDir + 'stream_meta/wm_vidlow.asx';
//mpAudio= eventDir + 'stream_meta/wm_audio.asx';
//rpVidHighUrl = eventDir + 'stream_meta/real_vidhigh.ram';
//rpVidLowUrl = eventDir + 'stream_meta/real_vidlow.ram';
//rpAudio= eventDir + 'stream_meta/real_audio.ram';
// *** pre-event tag ***
//mpAudio= eventDir + 'stream_meta/wm_audio_preevent.asx';
//rpAudio= eventDir + 'stream_meta/real_audio_preevent.ram';
// *** post-event tag (waiting for replay) ***
//mpAudio= eventDir + 'stream_meta/wm_audio_postevent.asx';
//rpAudio= eventDir + 'stream_meta/real_audio_postevent.ram';
// *** replay ***
//mpAudio= eventDir + 'stream_meta/wm_audio_replay.asx';
//rpAudio= eventDir + 'stream_meta/real_audio_replay.ram';
// *** On24- Live ***
// NOTE: when switching to On24, also change the following values
// in the switch(thisMediaPrestype) block below to disable live
// slide sync controls:
// wmAud: haswmliveslidesync = false
// rpAud: hasrmliveslidesync = false
//
//mpAudio= eventDir + 'stream_meta/wm_audio_on24.asx';
//rpAudio= eventDir + 'stream_meta/real_audio_on24.ram';
// *** live ***
//mpAudio= eventDir + 'stream_meta/wm_audio_live.asx';
//rpAudio= eventDir + 'stream_meta/real_audio_live.ram';
// KGA
// the following conditional will prevent an attempt by the code to execute this switch
// in the event that "thisMediaPresType" is not available. this condition would take
// place anywhere other than the initial auditorium window- therefore, these variables
// will only be available in that initial window
if (typeof thisMediaPresType != 'undefined') {
switch(thisMediaPresType) {
case 'wmVidHigh320x240' :
media = 'wm';
prestype ='vidhighaud320';
streamname = mpVidHighUrl;
hascc=0;
cansync = 1;
chartstate = 2;
haswmliveslidesync = false;
break;
case 'wmVidHigh240x180' :
media = 'wm';
prestype ='vidhigh';
streamname = mpVidHighUrl;
hascc=0;
cansync = 0;
chartstate = 2;
haswmliveslidesync = false;
break;
case 'wmVidLow240x180' :
media = 'wm';
prestype ='vidlow';
streamname = mpVidLowUrl;
cansync = 0;
hascc=0;
chartstate = 2;
haswmliveslidesync = false;
break;
case 'wmAud' :
media = 'wm';
prestype ='audio';
streamname = mpAudio;
hascc=0;
cansync = 1;
chartstate = 2;
// change has??liveslidesync to
// false to disable sync controls
haswmliveslidesync = true;
break;
case 'rpVidHigh320x240' :
media = 'real';
prestype ='vidhighaud320';
streamname = rpVidHighUrl;
hascc=0;
cansync = 1;
chartstate = 2;
break;
case 'rpVidHigh240x180' :
media = 'real';
prestype ='vidhigh';
streamname = rpVidHighUrl;
hascc=0;
cansync = 0;
chartstate = 2;
break;
case 'rpVidLow240x180' :
media = 'real';
prestype ='vidlow';
streamname = rpVidLowUrl;
cansync = 0;
hascc=0;
chartstate = 2;
break;
case 'rpAud' :
media = 'real';
prestype ='audio';
streamname = rpAudio;
hascc=0;
cansync = 1;
chartstate = 2;
hasrmliveslidesync = true;
break;
// KGA Added new case
case 'slide' :
media = 'slide';
prestype ='slide';
streamname = "";
hascc=0;
cansync = 0;
chartstate = 2;
break;
}
}
originalsync = cansync; // preserve the initial state of cansync
// saminame is optional -- use if you have a SAMI file for WM and have Closed Captioning enabled
// note: this *must* be an absolute URL (including the full server name)'
// thus this can't actually be tested until its published
//saminame = "http://wnts014.dyn.webahead.ibm.com/investor/events/audv2_test/live/stream_meta/cc.smi";
auditoriumtitle = "";
eventTitle = "IBM Global Briefing"; // KGA added eventTitle for rightnav.ssi
auditoriumtitlesub = "IBM Global Briefing
Bangalore, India
Hosted by Sam Palmisano, Chairman and Chief Executive Officer";
// global status variables -----------------//
refreshchart=1;
refreshchartinterval=60;
refreshPfc=1; // either 0 or 1
refreshvalPfc=60; // refresh time in seconds
refreshIndex=1; // etc.
refreshvalIndex=60;
refreshPrepared=1;
refreshvalPrepared=60;
refreshPress=1;
refreshvalPress=60;
slideclosed= presDir + 'before.gif';
slidefinished= presDir + 'after.gif';
chartwidth='520';
chartheight='400';
// KGA top banner link type
// seven "types", as follows (all include "help" link)
// 1= index, printer friendly charts, prepared remarks, press release
// 2= printer friendly charts, prepared remarks, press release
// 3= printer friendly charts
// 4= printer friendly charts, press release
// 5= press release
// 6= ? help only...identical to "closed" state
// 7= prepared remarks
// 8= prepared remarks, press release
linksType=2;
// webcastTitle is the webcast banner image below the Executive Presentations banner
webcastTitle= eventDir + 'images/webcast-title.gif';
webcastTitleHeight=122;
webcastTitleWidth=443;
webcastTitleAlt='IBM Global Briefing';
webcastTitleVideos= eventDir + 'images/webcast-title-video.gif';
webcastTitleVideosAlt='IBM Global Briefing: Supplemental Videos';
webcastMiniTitle= eventDir + 'images/webcast-title-mini.gif';
webcastMiniTitleHeight=25;
webcastMiniTitleWidth=443;
// urls of printer friendly charts, prepared remarks, and press release
// NOTE: need to work out how to deal with this for multi-speaker agendas
// for now, only one pfc/remearks/press release is supported per event
//
pfcLocation= eventDir + "webcastPdf.phtml";
pfcpdf= presDir + "global0606.pdf";
premarksLocation= eventDir + "webcastPrepared.phtml";
premarkspdf= presDir +"global0606prepared.pdf";
pressLocation= eventDir + "webcastPress.phtml";
pressContent= eventDir + "press_release/press_release.phtml";
supplementalVideos = eventDir + "videos.phtml";
// index.phtml specific variables
var indexText = new Array();
indexText[0]="
The IBM Global Briefing, hosted by IBM Chairman and CEO Sam Palmisano, will explore IBM's strategies to address the opportunities created by globalization and examine the changing nature of innovation and the role of technology in a time of economic transformation.
We chose to gather this year in one of the global economy's most fascinating markets -- India. By convening in Bangalore -- the first time we have done so outside the United States -- we will be able to showcase firsthand IBM's unique approach and how we integrate our global capabilities to create innovative high-value solutions for our clients.
A related press release is now available.
The IBM Global Briefing will take place in two sessions.The IBM Global Briefing, hosted by IBM Chairman and CEO Sam Palmisano, will explore IBM's strategies to address the opportunities created by globalization and examine the changing nature of innovation and the role of technology in a time of economic transformation.
We chose to gather this year in one of the global economy's most fascinating markets -- India. By convening in Bangalore -- the first time we have done so outside the United States -- we will be able to showcase firsthand IBM's unique approach and how we integrate our global capabilities to create innovative high-value solutions for our clients.
A related press release is now available.
The IBM Global Briefing will take place in two sessions.The IBM Global Briefing, hosted by IBM Chairman and CEO Sam Palmisano, will explore IBM's strategies to address the opportunities created by globalization and examine the changing nature of innovation and the role of technology in a time of economic transformation.
We chose to gather this year in one of the global economy's most fascinating markets -- India. By convening in Bangalore -- the first time we have done so outside the United States -- we will be able to showcase firsthand IBM's unique approach and how we integrate our global capabilities to create innovative high-value solutions for our clients.
A related press release is now available.
The IBM Global Briefing will take place in two sessions.The IBM Global Briefing, hosted by IBM Chairman and CEO Sam Palmisano, will explore IBM's strategies to address the opportunities created by globalization and examine the changing nature of innovation and the role of technology in a time of economic transformation.
We chose to gather this year in one of the global economy's most fascinating markets -- India. By convening in Bangalore -- the first time we have done so outside the United States -- we will be able to showcase firsthand IBM's unique approach and how we integrate our global capabilities to create innovative high-value solutions for our clients.
A related press release is available.
The IBM Global Briefing took place in two sessions.Note: Depending on your browser settings, the presentation may be downloaded to your hard drive, or opened in this window.'; pdfText[2]='The IBM Global Briefing presentation Adobe AcrobatTM File will be available when the replay is available.'; pdfText[3]='Click here to download the presentation as an Adobe AcrobatTM file.
Note: Depending on your browser settings, the presentation may be downloaded to your hard drive, or opened in this window.';
//