
var strings = new Array();

//player html
strings[0] = "No chapters available.";
strings[1] = "No transcript available.";
strings[2] = "No resources available.";
strings[3] = "Subject: ";
strings[4] = "Speaker(s): ";
strings[5] = "Date/Time: ";
strings[6] = "Description: ";
strings[7] = "Invalid password.";
strings[8] = "Search failed.";
strings[9] = "No thumbnails";
strings[10] = "View Selection:";
strings[11] = "( Slides As Video )";
strings[12] = "( Traditional )";
strings[13] = "Play Speed:";
strings[14] = "( < )";
strings[15] = "( > )";
strings[16] = "High Resolution Slide...";
strings[17] = "Transcript...";
strings[18] = "Search...";
strings[19] = "Help...";
strings[20] = "The media element failed to load.  You may not have the required components to view this content.  Please read the Help page.";
strings[21] = "Summary";
strings[22] = "Chapters";
strings[23] = "Resources";
strings[24] = "Slide";
strings[25] = "Slide List";
strings[26] = "Password";
strings[27] = "Submit";

//high res html
strings[100] = "Synchronize";

//transcript html
strings[200] = "Synchronize";

//search html
strings[300] = "Search";
strings[301] = "Submit";

//help html
strings[400] = "Help";
strings[401] = "Compatability Notes:";
strings[402] = "This player is intended to work with Internet Explorer and Firefox on Windows and with Safari on Macs.  Javascript must be enabled for any browser used.  Other OS/browser combinations may work, but have not been tested.";
strings[403] = "About:";
strings[404] = "This content was created using CBOX, a Winnov knowledge capture and dissemination appliance.  If you would like to learn more about this product, please visit winnov.com."

//run html
strings[500] = "Launcher";
strings[501] = "If the player is not automatically launched within three seconds, click 'Launch'.  If you experience difficulty viewing this content, check the compatability notes below.";
strings[502] = "Compatability Notes:";
strings[503] = "This player is intended to work with Internet Explorer and Firefox on Windows and with Safari on Macs.  Javascript must be enabled for any browser used.  Other OS/browser combinations may work, but have not been tested.";
strings[504] = "About:";
strings[505] = "This content was created using CBOX, a Winnov knowledge capture and dissemination appliance.  If you would like to learn more about this product, please visit winnov.com."
strings[506] = "Launch";

function GetString(index)
{
return strings[index];
}