// function Is() {
//   var agent = navigator.userAgent.toLowerCase();
//   this.major = parseInt(navigator.appVersion);
//   this.minor = parseFloat(navigator.appVersion);
//   this.mac = (agent.indexOf("mac") !=-1);
//   this.opera = (agent.indexOf("opera") !=-1);
//   this.konq = (agent.indexOf("konqueror") !=-1);
//   this.safari = ((agent.indexOf("safari")!=-1)&&(agent.indexOf("mac")!=-1))?true:false;
//   var is_khtml = (this.safari || this.konq);
//   this.gecko = ((!is_khtml)&&(navigator.product)&&(navigator.product.toLowerCase()=="gecko"))?true:false;
//   this.firefox = ((agent.indexOf("mozilla/5")!=-1) && (agent.indexOf("spoofer")==-1) &&
//                   (agent.indexOf("compatible")==-1) && (agent.indexOf("opera")==-1)  &&
//                   (agent.indexOf("webtv")==-1) && (agent.indexOf("hotjava")==-1)     &&
//                   (this.gecko) && (navigator.vendor=="Firefox"));
//   this.ns = ((agent.indexOf("mozilla") != -1) &&
//              (agent.indexOf("spoofer") == -1) &&
//              (agent.indexOf("compatible") == -1) &&
//              (agent.indexOf("opera") == -1) &&
//              (agent.indexOf("webtv") == -1));
//   this.ns2 = (this.ns && (this.major == 2));
//   this.ns3 = (this.ns && (this.major == 3));
//   this.ns4 = (this.ns && (this.major == 4));
//   this.ns6 = (this.ns && (this.major >= 5));
//   this.ie = (agent.indexOf("msie") != -1);
//   this.ie3 = (this.ie && (this.major < 4));="" this.ie4="(this.ie" &&="" (this.major="=" 4));="" if="" (this.ie4="" &&="" (agent.indexof("msie="" 5.0")="" !="-1))" {="" this.ie4="false;" this.ie5="true;" }="" this.iex="(this.ie" &&="" !this.ie3="" &&="" !this.ie4);="" }="" var="" is="new" is();="" var="" dom="(document.getElementById)" true:false;="" function="" writelayer(id,text)="" {="" var="" divid;="" if="" (is.ns4)="" divid="document.layers[id];" else="" if="" (is.ie4)="" divid="document.all[id];" else="" if="" (dom)="" divid="document.getElementById(id);" if="" (is.ns4)="" {="" divid.document.open();="" divid.document.write(text);="" divid.document.close();="" }="" else="" if="" (dom="" ||="" is.ie4)="" {="" divid.innerhtml="text;" }="" }="" function="" playsound(bplay,sessionid)="" {="" var="" szurl="/dyn/CAPTCHA/Sound?sid=" +="" sessionid;="" if(is.mac="" &&="" !is.safari)="" {="" if(bplay)="" {="" window.open(szurl,"soundwindow","scrollbars="no,resizable=no,width=10,height=10");" }="" }="" else="" if="" (is.ns="" ||="" is.opera)="" {="" var="" str="(bPlay)" /><embed src="szURL" autostart="TRUE" hidden="FALSE" />' : "";
//     writeLayer("auEmb",str);
//     eval("document.auEmb." + (bPlay ? "play()" : "stop()"));
//   } else {  
//     var auCon = (DOM) ? document.getElementById("auIEContainer") : document.auIEContainer;
//     auCon.src = (bPlay) ? "szURL" : "";
//   }
// }

function playSound() {
  var url = '/dyn/CAPTCHA/Sound?sid=280a74821302397b20a18c87c19b415b';
  if (document.all && !window.opera && /*@cc_on!@*/false) {
    var el = document.createElement('bgsound');
    document.body.appendChild(el);
    el.src = url;
  } else {
    var el = document.createElement('iframe');
    el.width = 0;
    el.height = 0;
    el.frameBorder = 0;
    el.src = url;
    document.body.appendChild(el);          
  }
}

// document.write('<div id="auEmb" style="position:absolute; visibility:hidden"></div>')
// document.write('<bgsound id="auIEContainer" />');

document.write('<p style="text-align:center;">Please enter the word that you see below.<br />(If you cannot see it, click to hear the word, and then enter it.)</p>',
'<a href="#SOUND" onclick="playSound();"><img src="/dyn/CAPTCHA/Image?sid=280a74821302397b20a18c87c19b415b" width="240" height="52" border="0" align="absmiddle" /></a>',
'&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;',
'<input name="submission_challenge" type="text" id="submission_challenge" />',
'<input type="hidden" name="sid" id="sid" value="280a74821302397b20a18c87c19b415b" />');