
//////////////////////////////////////////////////////////////////////////////
// sx-popwin.js
// created: Monday, June 05, 2006
// author:  Tobias Mayer
//
// javascript to create and show pop up info windows
// all elements to be rendered in a popWindow should set the attribute:
//    class=popWindow
// and specify the following style:
//   .popWindow { position: absolute; top: -2000; left: -2000; }
//
// More Detailed Information:
//    - Each message intended for display in a popup window should be a DIV with its class
//    set to 'popWindow'.  All 'popWindow' elements are hidden until requested by the showPopWindow()
//       function defined here.
//    - The id should begin with a lowercase 'w' for consistency.
//    - The font-size must be set at 8pt so the correct element size can be calculated prior
//    to being shown in the popup.  If font-size:8pt is omitted, display will be unpredictable.
//    - Elements that will call popWindows should be wrapped in a SPAN tag that
//    looks similar to this:
//       <SPAN class=helper onclick="showPopWindow(this, wTypeId)">Relevant Text Here</SPAN>
//
//
//////////////////////////////////////////////////////////////////////////////

var oPopup = window.createPopup();

function doClose(elem) {
   while (elem != null) {
      if (elem.id == "CLOSE") {
         return true;
      }
      //else get parent and keep looping
      elem = elem.parentElement;
   }
   return false;
}

function doNavigate(elem) {
   while (elem != null) {
      if (elem.id == "NAV") {
         return true;
      }
      //else get parent and keep looping
      elem = elem.parentElement;
   }
   return false;
}

function doClick() {
   // Get the event object of the popup window
   var thisEvent = this.document.parentWindow.event;
   if (doClose(thisEvent.srcElement)) {
      oPopup.hide();
   }
   else
   if (doNavigate(thisEvent.srcElement))
   {
      var new_url = thisEvent.srcElement.title.toString();
      //alert(new_url.toString());
      if (new_url.substring(0, 14) == "workshops.html")
      {
         //open these links up in the main window
         window.location.href = new_url;
         //need to force closure on the popup
         oPopup.hide();
      }
      else
      {
         //open a new window
         window.open(new_url);
      }
   }
}

function showPopWindow(caller, popcontent, title) {
   var oPopupBody = oPopup.document.body;
   oPopupBody.style.border = "2px inset silver";
   oPopupBody.style.background = "#FFFFFF";
   oPopupBody.onclick = doClick;
   oPopupBody.innerHTML =
      "<TABLE cellpadding=3 style=\"font-family:Verdana,Arial,Helvetica,sans-serif;font-size:8pt\">" +
      "   <TR>" +
      "   <TD nowrap align=left valign=top width=486 style='cursor:default; background-color:#B5E4FF; border:1px solid gray'>" +
      "     <SPAN style='width=460; font-weight:bold; font-size=11pt; color:black'>" + title + "</SPAN>" +
      "     <SPAN id=CLOSE style='font-weight:bold; font-size=10pt; color:white; background:#CD0000; border:1px solid gray'><SPAN style='cursor:hand;'>&nbsp;X&nbsp;</SPAN></SPAN>" +
      "  </TD>" +
      "  </TR>" +
      "  <TR height=464>" +
      "   <TD valign=top style='background-color:#f5f5f0; border:1px solid gray'>" + popcontent + "</TD>" +
      "  </TR>" +
      "</TABLE>";
   //oPopup.show(0, caller.offsetHeight, pophelp.offsetWidth + 48, pophelp.offsetHeight + 20, caller );
   oPopup.show(20, 20, 500, 500, caller);
}

//-----------------------------------------------------------------------------
//Functions to show profile content.
//IE 6.0 shows this content in a popup HTML element, using window.createPopup().
//Other browsers show it in a standard popup frame window.

function popWindow(htmlsrc, popId)
{
   var elem = document.getElementById(popId);
   if (elem === null)
   {
      alert("Error creating popup");
      return;
   }
   //alert("popWindow\n" + elem.innerHTML);
   if (isIE6())
   {
      var title = "The Scrum Exchange: ";
      if (popId === "popKenSchwaber")
      {
         title += "Ken Schwaber";
      }
      else
      {
         title += "Facilitator Information";
      }
      //alert("ie6");
      showPopWindow(window.document.body, elem.outerHTML, title);
      return false;
   }
   else
   {
      //all other browsers
      var params = "width=500, height=500, left=0, top=0, scrollbars=yes, dependent=yes";
      window.open(htmlsrc, 'profile', params);
      return false;
   }
}

function isIE6()
{
   return (self.navigator.appName == "Microsoft Internet Explorer" &&
           self.navigator.appVersion.indexOf("MSIE 6") >= 0);
}

function createProfiles()
{
   //alert('creating profiles');
   kenSchwaber();
   danRawsthorne();
   deborahHartmann();
   dougShimp();
   kaneMar();
   kertPeterson();
   michaelJames();
   tobiasMayer();
   victorSzalvay();
   davidChilcott();
   lukeHohmann();
   mattSmith();
   michaelHamman();
   michaelSpayd();
   nancyFrishberg();
   steveMarch();
   terrySand();
}

function kenSchwaber()
{
   var elem = document.getElementById("popKenSchwaber");
   if (elem === null)
   {
      alert("Error creating popKenSchwaber");
      return;
   }
   //alert('creating popKenSchwaber');
   person = "Ken Schwaber";
   navText = "controlchaos.com";
   navUrl = "http://controlchaos.com";
   navElement = " id=NAV title='" + navUrl + "' style='cursor:pointer' ";
   elem.innerHTML =
      "<div" + navElement + "style='font-size:12pt; font-weight:bold'><b>" + person + "</b></div>" +
      "<hr size=1 color=blue>" +
      "<br style='font-size:8pt'>" +
      "<div style='font-size:8pt' >" +
      "  <img height=150" + navElement + "align=left src=img/kenschwaber.jpg style='border-right: 8px solid #f5f5f0; border-bottom: 4px solid #f5f5f0;' />" +
      "  Ken Schwaber co-developed the Scrum process with Jeff Sutherland in the early 1990s to help organizations struggling with complex development projects. One of the signatories to the Agile Manifesto in 2001, he subsequently founded the AgileAlliance, a nonprofit organization dedicated to the creation of agile software, and currently serves as its chairman of the board. A 30-year veteran of the software development industry, he teaches and speaks at numerous conferences, including OOPSLA and Software Development. " +
      "  <br><br style='font-size:4pt'>" +
      "  Ken is the author of \"Software Project Management with Scrum\" and co-author of \"Software Development with Scrum\", the two principle books written on the Scrum methodology.  He still takes an active leadership role in the Scrum community and continues to run Certified ScrumMaster training courses around the world."  +
      "  </div><div style='font-size:8pt'>" +
      "  <br style='font-size:8pt'>" +
      "  <b>Title of Talk:</b> " +
      "  The State of Scrum" +
      "  <br><br style='font-size:8pt'>" +
      "  <hr size=1 color=blue>" +
      "  <br style='font-size:8pt'>" ;
      if (isIE6())
      {
         elem.innerHTML += "<b style='font-size:8pt'>More information about " + person + " at <span" + navElement + "style='color:blue'>" + navText + "</span></b>";
      }
      else
      {
         elem.innerHTML += "<b style='font-size:8pt'>More information about " + person + " at <a target=kenschwaber href=" + navUrl + ">" + navText + "</a></b>";
      }
      elem.innerHTML += "</div>";
}

function danRawsthorne()
{
   var elem = document.getElementById("popDanRawsthorne");
   if (elem === null)
   {
      alert("Error creating popDanRawsthorne");
      return;
   }
   //alert('creating popDanRawsthorne');
   person = "Dan Rawsthorne";
   navText = "Danube Technologies";
   navUrl = "http://danube.com/news_2006_08_14.htm";
   navElement = " id=NAV title='" + navUrl + "' style='cursor:pointer' ";
   elem.innerHTML =
      "<div" + navElement + "style='font-size:12pt; font-weight:bold'><b>" + person + "</b></div>" +
      "<hr size=1 color=blue>" +
      "<br style='font-size:8pt'>" +
      "<div style='font-size:8pt' >" +
      "  <img height=150" + navElement + "align=left src=img/danrawsthorne.jpg style='border-right: 8px solid #f5f5f0; border-bottom: 4px solid #f5f5f0;' />" +
      "  Dan Rawsthorne is a CST (Certified ScrumMaster Trainer) and a Use Case expert.  Dan recently joined the team at Danube Technologies. His focus is on helping organizations get products \"out the door\" using agility, and he has been doing so for over 20 years. He has a PhD in mathematics from the University of Illinois, and is currently writing a book on use cases. He concentrates his training and coaching in Use Case Driven Analysis, Managing Agile Requirements (Product Owner), and becoming a Certified ScrumMaster." +
      "  </div><div style='font-size:8pt'>" +
      "  <br style='font-size:12pt'>" +
      "  <b>Workshop:</b> " +
      "  <br><br style='font-size:4pt'>" ;
      if (isIE6())
      {
         elem.innerHTML +=
            "<div id=NAV style='cursor:pointer; color:blue; font-size:8pt' title='workshops.html#usecasedriven'>" +
            "Use Case Driven Story Development</div>" ;
      }
      else  //other browsers
      {
         elem.innerHTML +=
            "<div style='font-size:8pt'><a target=workshops href=workshops.html#usecasedriven>" +
            "Use Case Driven Story Development</a></div>" ;
      }
      elem.innerHTML +=
      "  <br style='font-size:6pt'>" +
      "  <hr size=1 color=blue>" +
      "  <br style='font-size:6pt'>" ;
      if (isIE6())
      {
         elem.innerHTML += "<b style='font-size:8pt'>More information about " + person + " at <span" + navElement + "style='color:blue'>" + navText + "</span></b>";
      }
      else
      {
         elem.innerHTML += "<b style='font-size:8pt'>More information about " + person + " at <a target=danrawsthorne href=" + navUrl + ">" + navText + "</a></b>";
      }
      elem.innerHTML += "</div>";
}

function deborahHartmann()
{
   var elem = document.getElementById("popDeborahHartmann");
   if (elem === null)
   {
      alert("Error creating popDeborahHartmann");
      return;
   }
   //alert('creating popDeborahHartmann');
   person = "Deborah Hartmann";
   navText = "vitalbrew.com";
   navUrl = "http://www.vitalbrew.com";
   navElement = " id=NAV title='" + navUrl + "' style='cursor:pointer' ";
   elem.innerHTML =
      "<div" + navElement + "style='font-size:12pt; font-weight:bold'><b>" + person + "</b></div>" +
      "<hr size=1 color=blue>" +
      "<br style='font-size:8pt'>" +
      "<div style='font-size:8pt' >" +
      "  <img height=150" + navElement + "align=left src=img/deborahhartmann.jpg style='border-right: 8px solid #f5f5f0; border-bottom: 4px solid #f5f5f0;' />" +
      "  Working as a developer, OO analyst, business analyst, and IT consultant, experience has shown me that process can help or hurt a team. I first used Scrum in 2001 on a team that pulled itself out of analysis paralysis. I took the CSM in 2003 and haven't looked back since." +
      "  <br><br style='font-size:4pt'>" +
      "  I'm passionate about making work valuable and rewarding, and I help teams and their customers discover the best ways to do this.  I've studied Fine Arts at Concordia University in Montreal, have worked as a ScrumMaster and Agile Process Improvement Coach, and facilitate the Open Space track at XPday events in Canada and the US." +
      "  <br><br style='font-size:4pt'>" +
      "  Recently I've become the Agile Community editor for InfoQ.com - together with Scott Ambler, I'm committed to tracking down high-quality information and news for my Agile colleagues - architects, team leads, managers and educators. You can find me on the web at www.vitalbrew.com, and in person I'm easy to spot - just listen for that irrepressible laugh :-)" +
      "  </div><div style='font-size:8pt'>" +
      "  <br style='font-size:8pt'>" +
      "  <b>Workshop:</b> " +
      "  <br><br style='font-size:4pt'>" ;
      if (isIE6())
      {
         elem.innerHTML +=
            "<div id=NAV style='cursor:pointer; color:blue; font-size:8pt' title='workshops.html#designthebox'>" +
            "Design the Box: defining our goals with words, images and colors</div>" +
            "<br style='font-size:2pt'>" +
            "<div>" +
            "Deborah will also be facilitating informal sessions in " +
            "<span id=NAV style='cursor:pointer; color:blue; font-size:8pt' title='index.html#dialogroom'>" +
            "The Dialog Room</span>.</div>" ;
      }
      else  //other browsers
      {
         elem.innerHTML +=
            "<div style='font-size:8pt'><a target=workshops href=workshops.html#designthebox>" +
            "Design the Box: defining our goals with words, images and colors</a></div>" +
            "<div style='font-size:8pt'>Deborah will also be facilitating informal sessions in " +
            "<a target=index href=index.html#dialogroom>The Dialog Room</a>.</div>" ;
      }
      elem.innerHTML +=
      "  <br style='font-size:6pt'>" +
      "  <hr size=1 color=blue>" +
      "  <br style='font-size:6pt'>" ;
      if (isIE6())
      {
         elem.innerHTML += "<b style='font-size:8pt'>More information about " + person + " at <span" + navElement + "style='color:blue'>" + navText + "</span></b>";
      }
      else
      {
         elem.innerHTML += "<b style='font-size:8pt'>More information about " + person + " at <a target=deborahhartmann href=" + navUrl + ">" + navText + "</a></b>";
      }
      elem.innerHTML += "</div>";
}

function dougShimp()
{
   var elem = document.getElementById("popDougShimp");
   if (elem === null)
   {
      alert("Error creating popDougShimp");
      return;
   }
   //alert('creating popDougShimp');
   person = "Doug Shimp";
   navText = "netobjectives.com";
   navUrl = "http://netobjectivesonline.com/moodle/user/view.php?id=12&course=1";
   navElement = " id=NAV title='" + navUrl + "' style='cursor:pointer' ";
   elem.innerHTML =
      "<div" + navElement + "style='font-size:12pt; font-weight:bold'><b>" + person + "</b></div>" +
      "<hr size=1 color=blue>" +
      "<br style='font-size:8pt'>" +
      "<div style='font-size:8pt' >" +
      "  <img height=150" + navElement + "align=left src=img/dougshimp.jpg style='border-right: 8px solid #f5f5f0; border-bottom: 4px solid #f5f5f0;' />" +
      "  Doug Shimp is a CST (Certified ScrumMaster Trainer) and a Use Case expert. He has 16 years experience in the technology field. One of his distinctions is his focus on the interaction of technology and corporate cultural issues. He is currently writing a book on \"The Product Owner.\" " +
      "  <br><br style='font-size:4pt'>" +
      "  Douglas is certified by Cockburn and Associates to teach \"Writing Effective Use Cases\" and by Advanced Development Methods (ADM) as a ScrumMaster Trainer. " +
      "  </div><div style='font-size:8pt'>" +
      "  <br style='font-size:30pt'>" +
      "  <b>Workshop:</b> " +
      "  <br><br style='font-size:4pt'>" ;
      if (isIE6())
      {
         elem.innerHTML +=
            "<div id=NAV style='cursor:pointer; color:blue; font-size:8pt' title='workshops.html#essentialpromises'>" +
            "The Essential Promises for Scrum to Succeed in an Organization</div>" ;
      }
      else  //other browsers
      {
         elem.innerHTML +=
            "<div style='font-size:8pt'><a target=workshops href=workshops.html#essentialpromises>" +
            "The Essential Promises for Scrum to Succeed in an Organization</a></div>" ;
      }
      elem.innerHTML +=
      "  <br style='font-size:6pt'>" +
      "  <hr size=1 color=blue>" +
      "  <br style='font-size:6pt'>" ;
      if (isIE6())
      {
         elem.innerHTML += "<b style='font-size:8pt'>More information about " + person + " at <span" + navElement + "style='color:blue'>" + navText + "</span></b>";
      }
      else
      {
         elem.innerHTML += "<b style='font-size:8pt'>More information about " + person + " at <a target=dougshimp href=" + navUrl + ">" + navText + "</a></b>";
      }
      elem.innerHTML += "</div>";
}

function kaneMar()
{
   var elem = document.getElementById("popKaneMar");
   if (elem === null)
   {
      alert("Error creating popKaneMar");
      return;
   }
   //alert('creating popKaneMar');
   person = "Kane Mar";
   navText = "danube.com";
   navUrl = "http://danube.com/kane_mar.htm";
   navElement = " id=NAV title='" + navUrl + "' style='cursor:pointer' ";
   elem.innerHTML =
      "<div" + navElement + "style='font-size:12pt; font-weight:bold'><b>" + person + "</b></div>" +
      "<hr size=1 color=blue>" +
      "<br style='font-size:8pt'>" +
      "<div style='font-size:8pt' >" +
      "  <img height=150" + navElement + "align=left src=img/kanemar.png style='border-right: 8px solid #f5f5f0; border-bottom: 4px solid #f5f5f0;' />" +
      "  I'm a Agile coach specializing in Scrum and Extreme Programming currently working with great people at Danube Technologies. I've been a ScrumMaster and Agile Coach for over 5 years. I have recently become a Scrum Trainer (CSMT) and I'm looking forward to sharing my experience with others in the Agile community." +
      "  <br><br style='font-size:4pt'>" +
      "  Previous to my work with Agile software development, I had a 15 years of experience as a developer and project manager for Waterfall and RUP projects working with Java, Smalltalk, C, SQL and PL/SQL. My recent technical interests have turned towards Ruby primarily because of it's similarity to Smalltalk." +
      "  </div><div style='font-size:8pt'>" +
      "  <br style='font-size:8pt'>" +
      "  <b>Workshop:</b> " +
      "  <br><br style='font-size:4pt'>" ;
      if (isIE6())
      {
         elem.innerHTML +=
            "<div id=NAV style='cursor:pointer; color:blue; font-size:8pt' title='workshops.html#userstories'>" +
            "Writing User Stories, or how Use Cases are so 1990's</div>" ;
      }
      else  //other browsers
      {
         elem.innerHTML +=
            "<div style='font-size:8pt'><a target=workshops href=workshops.html#userstories>" +
            "Writing User Stories, or how Use Cases are so 1990's</a></div>" ;
      }
      elem.innerHTML +=
      "  <br style='font-size:6pt'>" +
      "  <hr size=1 color=blue>" +
      "  <br style='font-size:6pt'>" ;
      if (isIE6())
      {
         elem.innerHTML += "<b style='font-size:8pt'>More information about " + person + " at <span" + navElement + "style='color:blue'>" + navText + "</span></b><br><br style=font-size:2pt>" +
         "<b style='font-size:8pt'>Kane's blog is at <span id=NAV title='http://kanemar.wordpress.com' style='cursor:pointer; color:blue'>kanemar.wordpress.com</span></b>";
      }
      else
      {
         elem.innerHTML += "<b style='font-size:8pt'>More information about " + person + " at <a target=kanemar href=" + navUrl + ">" + navText + "</a><br><br style=font-size:2pt>" +
         "<b style='font-size:8pt'>Kane's blog is at <a target=kanemar href=http://kanemar.wordpress.com/>kanemar.wordpress.com</a> </b>";
      }
      elem.innerHTML += "</div>";
}

function kertPeterson()
{
   var elem = document.getElementById("popKertPeterson");
   if (elem === null)
   {
      alert("Error creating popKertPeterson");
      return;
   }
   //alert('creating popKertPeterson');
   person = "Kert Peterson";
   navText = "kertpeterson.com";
   navUrl = "http://kertpeterson.com";
   navElement = " id=NAV title='" + navUrl + "' style='cursor:pointer' ";
   elem.innerHTML =
      "<div" + navElement + "style='font-size:12pt; font-weight:bold'><b>" + person + "</b></div>" +
      "<hr size=1 color=blue>" +
      "<br style='font-size:8pt'>" +
      "<div style='font-size:8pt' >" +
      "  <img height=150" + navElement + "align=left src=img/kertpeterson.jpg  style='border-right: 8px solid #f5f5f0; border-bottom: 4px solid #f5f5f0;' />" +
      "  Kert Peterson helps individuals leverage Scrum to lead change in their teams, their organizations, and themselves. Peterson's focus on business results and drive to uncover hidden talents in the corporate workplace underpins a pioneering approach to Scrum adoption that has transformed the way IT organizations perform and create value for their internal and external customers." +
      "  <br><br style='font-size:4pt'>" +
      "  Peterson's training methods are guided by more than 16 years of direct experience in all phases of the software development lifecycle, helping him design training sessions that provide participants with practical skills that can be immediately applied to their projects." +
      "  <br><br style='font-size:4pt'>" +
      "  Peterson has co-taught ScrumMaster courses with Ken Schwaber and contributed content that is part of the curriculum used by Schwaber to train ScrumMasters. Peterson's agile adoption clients include Capital One, Sun Microsystems, First American, and Canadian Pacific Railway. Peterson is President and founder of Enterprise Agile Group, LLC." +
      "  </div><div style='font-size:8pt'>" +
      "  <br style='font-size:8pt'>" +
      "  <b>Workshop:</b> " +
      "  <br><br style='font-size:4pt'>" ;
      if (isIE6())
      {
         elem.innerHTML +=
            "<div id=NAV style='cursor:pointer; color:blue; font-size:8pt' title='workshops.html#ensemble'>" +
            "Ensemble Tools for Agile Teams</div>" +
            "<br style='font-size:2pt'>" +
            "<div style='font-size:8pt'>Kert will also be facilitating one of the " +
            "<span id=NAV style='cursor:pointer; color:blue; font-size:8pt' title='workshops.html#agileplayground'>" +
            "Agile Playground</span> sessions.</div>" ;
      }
      else  //other browsers
      {
         elem.innerHTML +=
            "<div style='font-size:8pt'><a target=workshops href=workshops.html#ensemble>" +
            "Ensemble Tools for Agile Teams</a></div>" +
            "<br style='font-size:2pt'>" +
            "<div style='font-size:8pt'>Kert will also be facilitating one of the " +
            "<a target=workshops href=workshops.html#agileplayground>" +
            "Agile Playground</a> sessions.</div>" ;
      }
      elem.innerHTML +=
      "  <br style='font-size:6pt'>" +
      "  <hr size=1 color=blue>" +
      "  <br style='font-size:6pt'>" ;
      if (isIE6())
      {
         elem.innerHTML += "  <b style='font-size:8pt'>More information about " + person + " at <span" + navElement + "style='color:blue'>" + navText + "</span></b>";
      }
      else
      {
         elem.innerHTML += "  <b style='font-size:8pt'>More information about " + person + " at <a target=kertpeterson href=" + navUrl + ">" + navText + "</a></b>";
      }
      elem.innerHTML += "</div>";
}

function michaelJames()
{
   var elem = document.getElementById("popMichaelJames");
   if (elem === null)
   {
      alert("Error creating popMichaelJames");
      return;
   }
   //alert('creating popMichaelJames');
   person = "Michael James";
   navText = "danube.com";
   navUrl = "http://danube.com/michael_james.htm";
   navElement = " id=NAV title='" + navUrl + "' style='cursor:pointer' ";
   elem.innerHTML =
      "<div" + navElement + "style='font-size:12pt; font-weight:bold'><b>" + person + "</b></div>" +
      "<hr size=1 color=blue>" +
      "<br style='font-size:8pt'>" +
      "<div style='font-size:8pt' >" +
      "  <img height=150" + navElement + "align=left src=img/michaeljames.jpg style='border-right: 8px solid #f5f5f0; border-bottom: 4px solid #f5f5f0;' />" +
      "  I am a software process mentor and certified Scrum trainer with a focus on the engineering practices that allow Agile project management practices. I am also a software developer (formerly \"architect\") with 20+ years experience &ndash; including automated test experience that predates the Extreme Programming movement. I have experience with formal, phased, high-ceremony processes, chaotic non-processes of the dot-com era, and Agile processes including Scrum and XP " +
      "  <br><br style='font-size:4pt'>" +
      "  I find it effective to work one-on-one in the trenches with team members, infusing knowledge of Agile practices and mindsets from <i>inside</i> a team." +
      "  </div><div style='font-size:8pt'>" +
      "  <br style='font-size:8pt'>" +
      "  <b>Workshops:</b> " +
      "  <br><br style='font-size:4pt'>" ;
      if (isIE6())
      {
         elem.innerHTML +=
            "<div id=NAV style='cursor:pointer; color:blue; font-size:8pt' title='workshops.html#keyprinciples'>" +
            "Exploring the Key Scrum Principles</div>" +
            "<div id=NAV style='cursor:pointer; color:blue; font-size:8pt' title='workshops.html#velocitygame'>" +
            "The Velocity Game</div>" +
            "<div id=NAV style='cursor:pointer; color:blue; font-size:8pt' title='workshops.html#splitting'>" +
            "Splitting the Unsplitable</div>" ;
      }
      else  //other browsers
      {
         elem.innerHTML +=
            "<div style='font-size:8pt'><a target=workshops href=workshops.html#keyprinciples>" +
            "Exploring the Key Scrum Principles</a></div>" +
            "<div style='font-size:8pt'><a target=workshops href=workshops.html#velocitygame>" +
            "The Velocity Game</a></div>" +
            "<div style='font-size:8pt'><a target=workshops href=workshops.html#splitting>" +
            "Splitting the Unsplitable</a></div>" ;
      }
      elem.innerHTML +=
      "  <br style='font-size:6pt'>" +
      "  <hr size=1 color=blue>" +
      "  <br style='font-size:6pt'>" ;
      if (isIE6())
      {
         elem.innerHTML += "<b style='font-size:8pt'>More information about " + person + " at <span" + navElement + "style='color:blue'>" + navText + "</span></b>";
      }
      else
      {
         elem.innerHTML += "<b style='font-size:8pt'>More information about " + person + " at <a target=michaeljames href=" + navUrl + ">" + navText + "</a></b>";
      }
      elem.innerHTML += "</div>";
}

function tobiasMayer()
{
   var elem = document.getElementById("popTobiasMayer");
   if (elem === null)
   {
      alert("Error creating popTobiasMayer");
      return;
   }
   //alert('creating popTobiasMayer');
   person = "Tobias Mayer";
   navText = "agilethinking.net";
   navUrl = "http://agilethinking.net";
   navElement = " id=NAV title='" + navUrl + "' style='cursor:pointer' ";
   elem.innerHTML =
      "<div" + navElement + "style='font-size:12pt; font-weight:bold'><b>" + person + "</b></div>" +
      "<hr size=1 color=blue>" +
      "<br style='font-size:8pt'>" +
      "<div style='font-size:8pt' >" +
      "  <img height=150" + navElement + "align=left src=img/tobiasmayer.jpg style='border-right: 8px solid #f5f5f0; border-bottom: 4px solid #f5f5f0;' />" +
      "  I am a facilitator/trainer/educator from London, UK, currently residing in Palo Alto, California, USA. I have a background in software development, graphic design, dance, theatre arts, learning and development, and team/groupwork facilitation. " +
      "  <br><br style='font-size:4pt'>" +
      "  My principle interest these days is in the general area of organizational democracy and sociocracy; I'm interested in how management by consensus, and the qualities of self-organization, trust and courage can be used across the wider corporate culture to free the creative spirit, and improve both human relationships and productivity." +
      "  <br><br style='font-size:4pt'>" +
      "  I currently work as a change agent and facilitator, providing coaching and consulting services to organizations making the transition to more agile, trustful and team-centered ways of working. " +
      "  </div><div style='font-size:8pt'>" +
      "  <br style='font-size:8pt'>" +
      "  <b>Workshops:</b> " +
      "  <br><br style='font-size:4pt'>" ;
      if (isIE6())
      {
         elem.innerHTML +=
            "<div id=NAV style='cursor:pointer; color:blue; font-size:8pt' title='workshops.html#greatgameofpower'>" +
            "The Great Game of Power</div>" +
            "<div id=NAV style='cursor:pointer; color:blue; font-size:8pt' title='workshops.html#introtoscrum'>" +
            "Introduction to Scrum</div>" +
            "<div id=NAV style='cursor:pointer; color:blue; font-size:8pt' title='workshops.html#keyprinciples'>" +
            "Exploring the Key Scrum Principles</div>" ;
      }
      else  //other browsers
      {
         elem.innerHTML +=
            "<div style='font-size:8pt'><a target=workshops href=workshops.html#greatgameofpower>" +
            "The Great Game of Power</a></div>" +
            "<div style='font-size:8pt'><a target=workshops href=workshops.html#introtoscrum>" +
            "Introduction to Scrum</a></div>" +
            "<div style='font-size:8pt'><a target=workshops href=workshops.html#keyprinciples>" +
            "Exploring the Key Scrum Principles</a></div>" ;
      }
      elem.innerHTML +=
      "  <br style='font-size:6pt'>" +
      "  <hr size=1 color=blue>" +
      "  <br style='font-size:6pt'>" ;
      if (isIE6())
      {
         elem.innerHTML += "<b style='font-size:8pt'>More information about " + person + " at <span" + navElement + "style='color:blue'>" + navText + "</span></b>" ;
      }
      else
      {
         elem.innerHTML += "<b style='font-size:8pt'>More information about " + person + " at <a target=tobiasmayer href=" + navUrl + ">" + navText + "</a></b>" ;
      }
      elem.innerHTML += "</div>" ;
}

function victorSzalvay()
{
   var elem = document.getElementById("popVictorSzalvay");
   if (elem === null)
   {
      alert("Error creating popVictorSzalvay");
      return;
   }
   //alert('creating popVictorSzalvay');
   person = "Victor Szalvay";
   navText = "danube.com";
   navUrl = "http://danube.com/victor_szalvay.htm";
   navElement = " id=NAV title='" + navUrl + "' style='cursor:pointer' ";
   elem.innerHTML =
      "<div" + navElement + "style='font-size:12pt; font-weight:bold'><b>" + person + "</b></div>" +
      "<hr size=1 color=blue>" +
      "<br style='font-size:8pt'>" +
      "<div style='font-size:8pt' >" +
      "  <img height=150" + navElement + "align=left src=img/victorszalvay.jpg style='border-right: 8px solid #f5f5f0; border-bottom: 4px solid #f5f5f0;' />" +
      "  I am CTO and co-founder of Danube Technologies, Inc. My area of expertise is Agile project management. I am a Certified ScrumMaster Trainer with experience implementing Agile frameworks for software development teams in the public and private sector. I act in a dual capacity for Danube currently; I facilitate Certified ScrumMaster (CSM) courses, and I act as the Product Owner for ScrumWorks, Danube's Scrum-centric project management aide." +
      "  <br><br style='font-size:4pt'>" +
      "  When teaching, my goal is for students to walk away understanding the key principles behind Agile and Scrum.  Since the principles are difficult to grasp, I've found exercises showcasing the principles to be the best pedagogical tool.  In all my work I try to infuse Scrum principles and resist deviating from those core practices and principles. " +
      "  <br><br style='font-size:4pt'>" +
      "  Lately I've been reading more about Lean/Toyota Production System and how those principles translate for teams adopting Agile.  I also have an interest in chaos and complexity theory with Agile and Scrum so firmly rooted in those disciplines." +
      "  </div><div style='font-size:8pt'>" +
      "  <br style='font-size:8pt'>" +
      "  <b>Workshops:</b> " +
      "  <br><br style='font-size:4pt'>" ;
      if (isIE6())
      {
         elem.innerHTML +=
            "<div id=NAV style='cursor:pointer; color:blue; font-size:8pt' title='workshops.html#enterprisescrum'>" +
            "Pitching Enterprise Scrum</div>" +
            "<div id=NAV style='cursor:pointer; color:blue; font-size:8pt' title='workshops.html#introtoscrum'>" +
            "Introduction to Scrum</div>" +
            "<div id=NAV style='cursor:pointer; color:blue; font-size:8pt' title='workshops.html#velocitygame'>" +
            "The Velocity Game</div>" ;
      }
      else  //other browsers
      {
         elem.innerHTML +=
            "<div style='font-size:8pt'><a target=workshops href=workshops.html#enterprisescrum>" +
            "Pitching Enterprise Scrum</a></div>" +
            "<div style='font-size:8pt'><a target=workshops href=workshops.html#introtoscrum>" +
            "Introduction to Scrum</a></div>" +
            "<div style='font-size:8pt'><a target=workshops href=workshops.html#velocitygame>" +
            "The Velocity Game</a></div>" ;
      }
      elem.innerHTML +=
      "  <br style='font-size:6pt'>" +
      "  <hr size=1 color=blue>" +
      "  <br style='font-size:6pt'>" ;
      if (isIE6())
      {
         elem.innerHTML += "<b style='font-size:8pt'>More information about " + person + " at <span" + navElement + "style='color:blue'>" + navText + "</span></b><br><br style=font-size:2pt>" +
         "<b style='font-size:8pt'>Victor's blog is at <span id=NAV title='http://danube.com/blog/victorszalvay' style='cursor:pointer; color:blue'>danube.com/blog/victorszalvay</span></b>";
      }
      else
      {
         elem.innerHTML += "<b style='font-size:8pt'>More information about " + person + " at <a target=kanemar href=" + navUrl + ">" + navText + "</a><br><br style=font-size:2pt>" +
         "<b style='font-size:8pt'>Victor's blog is at <a target=victorszalvay href=http://danube.com/blog/victorszalvay>danube.com/blog/victorszalvay</a> </b>";
      }
      elem.innerHTML += "</div>";
}

function davidChilcott()
{
   var elem = document.getElementById("popDavidChilcott");
   if (elem === null)
   {
      alert("Error creating popDavidChilcott");
      return;
   }
   //alert('creating popDavidChilcott');
   person = "David Chilcott";
   navText = "outformations.com";
   navUrl = "http://www.outformations.com/team/drc.php";
   navElement = " id=NAV title='" + navUrl + "' style='cursor:pointer' ";
   elem.innerHTML =
      "<div" + navElement + "style='font-size:12pt; font-weight:bold'><b>" + person + "</b></div>" +
      "<hr size=1 color=blue>" +
      "<br style='font-size:8pt'>" +
      "<div style='font-size:8pt' >" +
      "  <img height=150" + navElement + "align=left src=img/davidchilcott.jpg style='border-right: 8px solid #f5f5f0; border-bottom: 4px solid #f5f5f0;' />" +
      "  David is the founder and current president of Outformations, Inc. (a collaborative design and development practice) and acts as Outformation's lead systems analyst and designer. With formal training in creative problem solving and a degree in group dynamics, his ability to act as both facilitator and design architect allows for well focused, task-oriented client design sessions. " +
      "  <br><br style='font-size:4pt'>" +
      "  His passionate focus on collaboration and clear communication supports effective agile project management and project team facilitation, training, and consulting. With over eighteen years as a relational database application developer, his technical skills include Use Case and UML Modeling, Application Architecture and Design, web and desktop application development, and various DBMS systems. " +
      "  <br><br style='font-size:4pt'>" +
      "  David is a former president of the Bay Area Association of Database Developers, and co-leads the Bay Area Rational User Group which is co-hosted by Outformations, Inc." +
      "  </div><div style='font-size:8pt'>" +
      "  <br style='font-size:8pt'>" +
      "  <b>Workshop:</b> " +
      "  <br><br style='font-size:4pt'>" ;
      if (isIE6())
      {
         elem.innerHTML +=
            "<div id=NAV style='cursor:pointer; color:blue; font-size:8pt' title='workshops.html#leaderfulgroups'>" +
            "Managing Leaderful Groups: radical transparency and the paradox of facilitated self-organization...</div>" ;
      }
      else  //other browsers
      {
         elem.innerHTML +=
            "<div style='font-size:8pt'><a target=workshops href=workshops.html#leaderfulgroups>" +
            "Managing Leaderful Groups: Radical Transparency and the Paradox of Facilitated Self-Organization...</a></div>" ;
      }
      elem.innerHTML +=
      "  <br style='font-size:6pt'>" +
      "  <hr size=1 color=blue>" +
      "  <br style='font-size:6pt'>" ;
      if (isIE6())
      {
         elem.innerHTML += "<b style='font-size:8pt'>More information about " + person + " at <span" + navElement + "style='color:blue'>" + navText + "</span></b>";
      }
      else
      {
         elem.innerHTML += "<b style='font-size:8pt'>More information about " + person + " at <a target=davidchilcott href=" + navUrl + ">" + navText + "</a></b>";
      }
      elem.innerHTML += "</div>";
}

function lukeHohmann()
{
   var elem = document.getElementById("popLukeHohmann");
   if (elem === null)
   {
      alert("Error creating popLukeHohmann");
      return;
   }
   //alert('creating popLukeHohmann');
   person = "Luke Hohmann";
   navText = "enthiosys.com";
   navUrl = "http://enthiosys.com/team.php";
   navElement = " id=NAV title='" + navUrl + "' style='cursor:pointer' ";
   elem.innerHTML =
      "<div" + navElement + "style='font-size:12pt; font-weight:bold'><b>" + person + "</b></div>" +
      "<hr size=1 color=blue>" +
      "<br style='font-size:8pt'>" +
      "<div style='font-size:8pt' >" +
      "  <img height=150" + navElement + "align=left src=img/lukehohmann.jpg style='border-right: 8px solid #f5f5f0; border-bottom: 4px solid #f5f5f0;' />" +
      "  I am the Founder & CEO at Enthiosys Inc., and have devoted my professional career to creating environments where everyone can work to their fullest creative and intellectual abilities.I am a committed coach, working with every individual and the organization as a whole to achieve greater levels of performance." +
      "  <br><br style='font-size:4pt'>" +
      "  I am also the author of \"Beyond Software Architecture: Creating and Sustaining Winning Solutions\", and \"Journey of the Software Professional: A Sociology of Software Development\". I am currently finishing up my third book, \"Innovation Games: Creating Breakthrough Products and Services\", which can be pre-ordered from Amazon." +
      "  <br><br style='font-size:4pt'>" +
      "  I serve on the technical advisory board for Rally Software Development Corporation. As a faculty member of the University of California, Santa Cruz Extension, I am also a regularly-invited speaker and panelist at major industry conferences on topics ranging from software development processes to strategic product management." +
      "  </div><div style='font-size:8pt'>" +
      "  <br style='font-size:8pt'>" +
      "  <b>Workshop:</b> " +
      "  <br><br style='font-size:4pt'>" ;
      if (isIE6())
      {
         elem.innerHTML +=
            "<div id=NAV style='cursor:pointer; color:blue; font-size:8pt' title='workshops.html#innovationgames'>" +
            "An Introduction to Innovation Games</div>" ;
      }
      else  //other browsers
      {
         elem.innerHTML +=
            "<div style='font-size:8pt'><a target=workshops href=workshops.html#innovationgames>" +
            "An Introduction to Innovation Games</a></div>" ;
      }
      elem.innerHTML +=
      "  <br style='font-size:6pt'>" +
      "  <hr size=1 color=blue>" +
      "  <br style='font-size:6pt'>" ;
      if (isIE6())
      {
         elem.innerHTML += "<b style='font-size:8pt'>More information about " + person + " at <span" + navElement + "style='color:blue'>" + navText + "</span></b>";
      }
      else
      {
         elem.innerHTML += "<b style='font-size:8pt'>More information about " + person + " at <a target=lukehohmann href=" + navUrl + ">" + navText + "</a></b>";
      }
      elem.innerHTML += "</div>";
}

function mattSmith()
{
   var elem = document.getElementById("popMattSmith");
   if (elem === null)
   {
      alert("Error creating popMattSmith");
      return;
   }
   //alert('creating popMattSmith');
   person = "Matt Smith";
   navText = "matt-smith.net";
   navUrl = "http://matt-smith.net/training/trainraves.html";
   navElement = " id=NAV title='" + navUrl + "' style='cursor:pointer' ";
   elem.innerHTML =
      "<div" + navElement + "style='font-size:12pt; font-weight:bold'><b>" + person + "</b></div>" +
      "<hr size=1 color=blue>" +
      "<br style='font-size:8pt'>" +
      "<div style='font-size:8pt' >" +
      "  <img height=150" + navElement + "align=left src=img/mattsmith.jpg style='border-right: 8px solid #f5f5f0; border-bottom: 4px solid #f5f5f0;' />" +
      "  <i>I studied improvisation so that I could become funny on stage in front of people. What I learned from the training was quite different.</i>" +
      "  <br><br style='font-size:4pt'>" +
      "  More than readying me for the stage, it improved my life! The rules and tools that lead to clear, accountable communication spilled over into my family, community and work relationships, altering them forever. In 1990, I designed my first workshop for DSHS workers in Washington State, introducing tools to help them deal with stress and change. Since then I have been visiting corporate cultures, installing a template for authentic, spontaneous interaction appropriate to any circumstance." +
      "  <br><br style='font-size:4pt'>" +
      "  Most of us have been in groups that underachieve, due to a process of sharing ideas that inhibits clear definition and forward motion. This waste of time, energy, and talent can be avoided. The rules that govern the brightest, most creative, fertile minded improvisers in the world can be learned and applied to your project! The exercises I use are tried and true, and directed at specific, identified challenges." +
      "  </div><div style='font-size:8pt'>" +
      "  <br style='font-size:8pt'>" +
      "  <b>Workshop:</b> " +
      "  <br><br style='font-size:4pt'>" ;
      if (isIE6())
      {
         elem.innerHTML +=
            "<div id=NAV style='cursor:pointer; color:blue; font-size:8pt' title='workshops.html#improvtools'>" +
            "Improvisation Tools for ScrumMasters</div>" +
            "<br style='font-size:2pt'>" +
            "<div>" +
            "Matt will also be facilitating one of the " +
            "<span id=NAV style='cursor:pointer; color:blue; font-size:8pt' title='workshops.html#agileplayground'>" +
            "Agile Playground</span> sessions.</div>" ;
      }
      else  //other browsers
      {
         elem.innerHTML +=
            "<div style='font-size:8pt'><a target=workshops href=workshops.html#improvtools>" +
            "Improvisation Tools for ScrumMasters</a></div>" +
            "<div style='font-size:8pt'>Matt will also be facilitating one of the " +
            "<a target=workshops href=workshops.html#agileplayground>Agile Playground</a> sessions.</div>" ;
      }
      elem.innerHTML +=
      "  <br style='font-size:6pt'>" +
      "  <hr size=1 color=blue>" +
      "  <br style='font-size:6pt'>" ;
      if (isIE6())
      {
         elem.innerHTML += "<b style='font-size:8pt'>More information about " + person + " at <span" + navElement + "style='color:blue'>" + navText + "</span></b>";
      }
      else
      {
         elem.innerHTML += "<b style='font-size:8pt'>More information about " + person + " at <a target=mattsmith href=" + navUrl + ">" + navText + "</a></b>";
      }
      elem.innerHTML += "</div>";
}

function michaelHamman()
{
   var elem = document.getElementById("popMichaelHamman");
   if (elem === null)
   {
      alert("Error creating popMichaelHamman");
      return;
   }
   person = "Michael Hamman";
   navText = "ecosystemae.com";
   navUrl = "http://www.ecosystemae.com/about/about.htm";
   navElement = " id=NAV title='" + navUrl + "' style='cursor:pointer' ";
   elem.innerHTML =
      "<div" + navElement + "style='font-size:12pt; font-weight:bold'><b>" + person + "</b></div>" +
      "<hr size=1 color=blue>" +
      "<br style='font-size:8pt'>" +
      "<div style='font-size:8pt' >" +
      "  <img height=150" + navElement + "align=left src=img/michaelhamman.gif style='border-right: 8px solid #f5f5f0; border-bottom: 4px solid #f5f5f0;' />" +
      "  As an organizational consultant and educator, Michael Hamman is committed to the transformation of organizations and of the workplace. Through rich dialog and inquiry, and through the collaborative design of actions in which people themselves transform their workplace, Michael helps organizations develop their own capacity for profound innovation and ongoing change." +
      "  <br><br style='font-size:4pt'>" +
      "  Believing that authentic change can only happen where there is genuine choice, Michael specializes in working with executive leaders, line managers, and workers to create whole-system solutions that are not only transformative, but also sustainable." +
      "  <br><br style='font-size:4pt'>" +
      "  Michael has worked for over 15 years with organizations in business, academia, and government. Michael earned his Ph.D. in an interdisciplinary program which combined computer science, philosophy, and music composition." +
      "  </div><div style='font-size:8pt'>" +
      "  <br style='font-size:8pt'>" +
      "  <b>Workshop:</b> " +
      "  <br><br style='font-size:4pt'>" ;
      if (isIE6())
      {
         elem.innerHTML +=
            "<div id=NAV style='cursor:pointer; color:blue; font-size:8pt' title='workshops.html#talkaintcheap'>" +
            "When Talk Ain’t Cheap: language practice that empowers effective agile project delivery</div>" ;
      }
      else  //other browsers
      {
         elem.innerHTML +=
            "<div style='font-size:8pt'><a target=workshops href=workshops.html#talkaintcheap>" +
            "When Talk Ain’t Cheap: language practice that empowers effective agile project delivery</a></div>" ;
      }
      elem.innerHTML +=
      "  <br style='font-size:6pt'>" +
      "  <hr size=1 color=blue>" +
      "  <br style='font-size:6pt'>" ;
      if (isIE6())
      {
         elem.innerHTML += "<b style='font-size:8pt'>More information about " + person + " at <span" + navElement + "style='color:blue'>" + navText + "</span></b>";
      }
      else
      {
         elem.innerHTML += "<b style='font-size:8pt'>More information about " + person + " at <a target=michaelhamman href=" + navUrl + ">" + navText + "</a></b>";
      }
      elem.innerHTML += "</div>";
}

function michaelSpayd()
{
   var elem = document.getElementById("popMichaelSpayd");
   if (elem === null)
   {
      alert("Error creating popMichaelSpayd");
      return;
   }
   //alert('creating popMichaelSpayd');
   person = "Michael Spayd";
   navText = "Michael Spayd bio page";
   navUrl = "http://agilethinking.net/sx/michaelspayd-bio.pdf";
   navElement = " id=NAV title='" + navUrl + "' style='cursor:pointer' ";
   elem.innerHTML =
      "<div" + navElement + "style='font-size:12pt; font-weight:bold'><b>" + person + "</b></div>" +
      "<hr size=1 color=blue>" +
      "<br style='font-size:8pt'>" +
      "<div style='font-size:8pt' >" +
      "  <img height=150" + navElement + "align=left src=img/michaelspayd.jpg style='border-right: 8px solid #f5f5f0; border-bottom: 4px solid #f5f5f0;' />" +
      "  My path as a consultant has been one of traversing ever widening and more conscious concentric circles of healing and transformation, both for my clients and for myself. For twenty-three years, I have worked with individuals, teams, organizations and communities to help them realize the highest expression of their gifts." +
      "  <br><br style='font-size:4pt'>" +
      "  As a consultant I take on roles like management advisor, team / individual coach, teacher/presenter, author, event facilitator and showman. I am always and foremost a student of life, with training in psychology and psychotherapy (MA), family and systems theory, group facilitation (Certified Professional Facilitator), Agile coaching (CSM), organization culture & development, Tibetan Buddhism and some shamanic and other esoteric arts like astrology." +
      "  <br><br style='font-size:4pt'>" +
      "  I am currently growing a company called Cogility Consulting Solutions, LLC, an Agile organization and management development organization out of Richmond, Virginia." +
      "  </div><div style='font-size:8pt'>" +
      "  <br style='font-size:8pt'>" +
      "  <b>Workshop:</b> " +
      "  <br><br style='font-size:4pt'>" ;
      if (isIE6())
      {
         elem.innerHTML +=
            "<div id=NAV style='cursor:pointer; color:blue; font-size:8pt' title='workshops.html#constellating'>" +
            "Constellating the Field: A non-rational way to see what's shaking</div>" ;
      }
      else  //other browsers
      {
         elem.innerHTML +=
            "<div style='font-size:8pt'><a target=workshops href=workshops.html#constellating>" +
            "Constellating the Field: A non-rational way to see what's shaking</a></div>" ;
      }
      elem.innerHTML +=
      "  <br style='font-size:6pt'>" +
      "  <hr size=1 color=blue>" +
      "  <br style='font-size:6pt'>" ;
      "  <br><br style='font-size:8pt'>" ;
      if (isIE6())
      {
         elem.innerHTML += "<b style='font-size:8pt'>More information about " + person + " at <span" + navElement + "style='color:blue'>" + navText + "</span></b>";
      }
      else
      {
         elem.innerHTML += "<b style='font-size:8pt'>More information about " + person + " at <a target=michaelspayd href=" + navUrl + ">" + navText + "</a></b>";
      }
      elem.innerHTML += "</div>";
}

function nancyFrishberg()
{
   var elem = document.getElementById("popNancyFrishberg");
   if (elem === null)
   {
      alert("Error creating popNancyFrishberg");
      return;
   }
   //alert('creating popNancyFrishberg');
   person = "Nancy Frishberg";
   navText = "vinq.com";
   navUrl = "http://www.vinq.com/company/staff/bio_frishberg.html";
   navElement = " id=NAV title='" + navUrl + "' style='cursor:pointer' ";
   elem.innerHTML =
      "<div" + navElement + "style='font-size:12pt; font-weight:bold'><b>" + person + "</b></div>" +
      "<hr size=1 color=blue>" +
      "<br style='font-size:8pt'>" +
      "<div style='font-size:8pt' >" +
      "  <img height=150" + navElement + "align=left src=img/nancyfrishberg.jpg style='border-right: 8px solid #f5f5f0; border-bottom: 4px solid #f5f5f0;' />" +
      "  Nancy Frishberg believes in, practices and promotes interaction with the actual users of software and hardware products during early concept, development and post-release.  In this way, products will be usable, useful and enjoyable by the intended audiences.  She is sensitive to the differences in roles and functions implied by terms such as \"user\", \"customer\" and \"market\"." +
      "  <br><br style='font-size:4pt'>" +
      "  A teacher and trainer, Nancy holds a Ph.D. from University of California at San Diego in linguistics. Her book on sign language interpreting, in print continuously for 20 years, serves as the basis for the national written examinations supervised by the Registry of Interpreters for the Deaf. She's been active in ACM's SIGCHI conferences as a participant, author or program organizer since 1989, and was a co-chair for the Designing for User eXperience conference held in San Francisco in Fall 2005." +
      "  <br><br style='font-size:4pt'>" +
      "  Nancy currently works as a User Experience Strategist at Vinq, in California." +
      "  </div><div style='font-size:8pt'>" +
      "  <br style='font-size:8pt'>" +
      "  <b>Workshop:</b> " +
      "  <br><br style='font-size:4pt'>" ;
      if (isIE6())
      {
         elem.innerHTML +=
            "<div id=NAV style='cursor:pointer; color:blue; font-size:8pt' title='workshops.html#usability'>" +
            "User-Centered Design meets Scrum</div>" ;
      }
      else  //other browsers
      {
         elem.innerHTML +=
            "<div style='font-size:8pt'><a target=workshops href=workshops.html#usability>" +
            "User-Centered Design meets Scrum</a></div>" ;
      }
      elem.innerHTML +=
      "  <br style='font-size:6pt'>" +
      "  <hr size=1 color=blue>" +
      "  <br style='font-size:6pt'>" ;
      "  <br><br style='font-size:8pt'>" ;
      if (isIE6())
      {
         elem.innerHTML += "<b style='font-size:8pt'>More information about " + person + " at <span" + navElement + "style='color:blue'>" + navText + "</span></b>";
      }
      else
      {
         elem.innerHTML += "<b style='font-size:8pt'>More information about " + person + " at <a target=nancyfrishberg href=" + navUrl + ">" + navText + "</a></b>";
      }
      elem.innerHTML += "</div>";
}

function steveMarch()
{
   var elem = document.getElementById("popSteveMarch");
   if (elem === null)
   {
      alert("Error creating popSteveMarch");
      return;
   }
   //alert('creating popSteveMarch');
   person = "Steve March";
   navText = "compassionate-coaching.com";
   navUrl = "http://compassionate-coaching.com/";
   navElement = " id=NAV title='" + navUrl + "' style='cursor:pointer' ";
   elem.innerHTML =
      "<div" + navElement + "style='font-size:12pt; font-weight:bold'><b>" + person + "</b></div>" +
      "<hr size=1 color=blue>" +
      "<br style='font-size:8pt'>" +
      "<div style='font-size:8pt' >" +
      "  <img height=150" + navElement + "align=left src=img/stevemarch.gif style='border-right: 8px solid #f5f5f0; border-bottom: 4px solid #f5f5f0;' />" +
      "  I am a coach and business consultant who partners with leaders and teams in software companies to generate new and innovative ways of working (and living) that are more effective and sustainable than traditional ways." +
      "  <br><br style='font-size:4pt'>" +
      "  My approach is founded upon the observation that people not technologies, are at the center of software development, When we take technology to be at the center, we adopt practices for developing software that tend to be very wasteful and are not sustainable." +
      "  <br><br style='font-size:4pt'>" +
      "  I have worked in the software industry for 15 years as a developer, tester, process designer, and quality manager. The last 10 years have been spent applying key insights from developmental psychology and practical philosophy to help leaders and teams re-center their efforts on people and eliminate wasteful practices. My current position is manager of a team of internal coaches and consultants who, with me. Together we are exploring new frontiers at the nexus of people, technologies, and practices." +
      "  </div><div style='font-size:8pt'>" +
      "  <br style='font-size:8pt'>" +
      "  <b>Workshop:</b> " +
      "  <br><br style='font-size:4pt'>" ;
      if (isIE6())
      {
         elem.innerHTML +=
            "<div id=NAV style='cursor:pointer; color:blue; font-size:8pt' title='workshops.html#deeppractices'>" +
            "Exploring the Deep Practices of Agile Project Management</div>" ;
      }
      else  //other browsers
      {
         elem.innerHTML +=
            "<div style='font-size:8pt'><a target=workshops href=workshops.html#deeppractices>" +
            "Exploring the Deep Practices of Agile Project Management</a></div>" ;
      }
      elem.innerHTML +=
      "  <br style='font-size:6pt'>" +
      "  <hr size=1 color=blue>" +
      "  <br style='font-size:6pt'>" ;
      "  <br><br style='font-size:8pt'>" ;
      if (isIE6())
      {
         elem.innerHTML += "<b style='font-size:8pt'>More information about " + person + " at <span" + navElement + "style='color:blue'>" + navText + "</span></b>";
      }
      else
      {
         elem.innerHTML += "<b style='font-size:8pt'>More information about " + person + " at <a target=stevemarch href=" + navUrl + ">" + navText + "</a></b>";
      }
      elem.innerHTML += "</div>";
}

function terrySand()
{
   var elem = document.getElementById("popTerrySand");
   if (elem === null)
   {
      alert("Error creating popTerrySand");
      return;
   }
   //alert('creating popTerrySand');
   person = "Terry Sand";
   navText = "humortech.com";
   navUrl = "http://humortech.com/";
   navElement = " id=NAV title='" + navUrl + "' style='cursor:pointer' ";
   elem.innerHTML =
      "<div" + navElement + "style='font-size:12pt; font-weight:bold'><b>" + person + "</b></div>" +
      "<hr size=1 color=blue>" +
      "<br style='font-size:8pt'>" +
      "<div style='font-size:8pt' >" +
      "  <img height=150" + navElement + "align=left src=img/terrysand.jpg style='border-right: 8px solid #f5f5f0; border-bottom: 4px solid #f5f5f0;' />" +
      "  With over a dozen years of experience speaking to some of the premier companies in the U.S., Terry Sand, founder of HumorTech, is widely recognized for her improvisational comedy and team-building programs in business. Terry has a unique ability to drive home her clients' corporate message while entertaining participants with a lively cast of her own characters and voices. " +
      "  <br><br style='font-size:4pt'>" +
      "  Through humor, participants learn how to apply improv skills to improve their communication with team members, colleagues, and clients. The games also serve as a way to demonstrate methods that enhance skills and abilities in customer service, sales, and marketing, and to increase productivity and profitability." +
      "  </div><div style='font-size:8pt'>" +
      "  <br style='font-size:8pt'>" +
      "  <b>Workshop:</b> " +
      "  <br><br style='font-size:4pt'>" ;
      if (isIE6())
      {
         elem.innerHTML +=
            "<div id=NAV style='cursor:pointer; color:blue; font-size:8pt' title='workshops.html#enchantment'>" +
            "Leading The Way To Creative Enchantment!</div>" ;
      }
      else  //other browsers
      {
         elem.innerHTML +=
            "<div style='font-size:8pt'><a target=workshops href=workshops.html#enchantment>" +
            "Leading The Way To Creative Enchantment!</a></div>" ;
      }
      elem.innerHTML +=
      "  <br style='font-size:6pt'>" +
      "  <hr size=1 color=blue>" +
      "  <br style='font-size:6pt'>" ;
      "  <br><br style='font-size:8pt'>" ;
      if (isIE6())
      {
         elem.innerHTML += "<b style='font-size:8pt'>More information about " + person + " at <span" + navElement + "style='color:blue'>" + navText + "</span></b>";
      }
      else
      {
         elem.innerHTML += "<b style='font-size:8pt'>More information about " + person + " at <a target=terrysand href=" + navUrl + ">" + navText + "</a></b>";
      }
      elem.innerHTML += "</div>";
}


