// 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) ? '' : "";
// 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=0486e42aba4ca7eac272e22aa2a6b293';
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('')
// document.write('');
document.write('Please enter the word that you see below.
(If you cannot see it, click to hear the word, and then enter it.)
',
'',
' ',
'',
'');