// video tracking functionsfunction pluginDesc(aMimeType) {    if (navigator.mimeTypes) {      if (navigator.mimeTypes[aMimeType]) {        if (navigator.mimeTypes[aMimeType].enabledPlugin) {          if (aMimeType == 'video/quicktime') {	// special case for QuickTime -- version is in name, not description            return navigator.mimeTypes[aMimeType].enabledPlugin.name;          } else {          	return navigator.mimeTypes[aMimeType].enabledPlugin.description;          }        }      }    }}function  plugin_ret() {  // given a mime type, returns the plug-in's description, if there is one.  var q = '?';  q += 'screen.height=' + screen.height + '&';  q += 'screen.width=' + screen.width + '&';  if (document.body) {    q += 'window.height=' + document.body.clientHeight + '&';    q += 'window.width=' + document.body.clientWidth + '&';  } else if (window.innerHeight) {    q += 'window.height=' + window.innerHeight + '&';    q += 'window.width=' + window.innerWidth + '&';  }  if (pluginDesc('application/x-director')) { q+= 'shockwave=' + escape(pluginDesc('application/x-director')) + '&'; }  if (pluginDesc('application/x-shockwave-flash')) { q+= 'flash=' + escape(pluginDesc('application/x-shockwave-flash')) + '&'; }  if (pluginDesc('video/quicktime')) { q+= 'quicktime=' + escape(pluginDesc('video/quicktime')) + '&'; }  q += 'javaEnabled=' + navigator.javaEnabled() + '&';  if (document.images) {    var detect = new Image();    detect.src = 'http://intapp.wgbh.org/intapp/track/single.gif' + q;    document.write('<img src="' + detect.src + '" height="1" width="1" alt="">');  }}