<!-- Original:  Jonathan Feaster (http://www.archreality.com/) -->

<!-- Web Site:  http://www.archreality.com/jcap/ -->

<!-- Version: 2.0 -->

<!-- Based on: Gimpy CAPTCHA Project at Carnegie Mellon University (http://www.captcha.net/) -->

<!-- Begin

var imgdir = "http://camsitesdirectory.com/js/chapcha/cimg/"; // identify directory where captcha images are located
var jfldid = "invalid_security_code"; // identify word field id name
var jfldsz = 50; // identify word field size

function sjcap(jfldcls){
imgdir = encodeURIComponent(imgdir);
if (jfldcls == null){
jfldcls = "";
}
anum = (Math.floor(Math.random()*10))+1; // *52 de imagini
imgid = parseInt(anum);
cword = 
[
"0e30d65a85a3bbe5007006ce097f948a", // 1 / live-cams
"dbdcf5bd5fe7a0ad2ebdc105c78633f8", // 2 / gin-gin
"f7b44cfafd5c52223d5498196c8a2e7b", // 3 / stream
"a3acd7132cdfa6da0187a34ac1356e43", // 4 / pornlife
"2a304a1348456ccd2234cd71a81bd338", // 5 / link
"89e55d4f580dd044088b9a003110b37a", // 6 / porn
"0a866d7a03ba8a0219996f0122045ddb", // 7 / livecams
"83b48c812590dee9e300be3c32a77d5a", // 8 / 17mai
"5f8f22b8cdbaeee8cf857673a9b6ba20", // 9 / directory
"19dcb1b7cc74c958a3209d7a22441be7", // 10/ videochat
 ];

document.write("<img src=\"" + decodeURIComponent(imgdir) + imgid + ".jpg\" width=\"290\" height=\"80\" alt=\"\"><div style=\"padding-top:5px;\"><\/div>");
 
document.write("<input type=\"text\" onblur=\"jcap();\" id=\"" + jfldid + "\" style=\"width:290px;\" name=\"" + jfldid + "\"" + jfldcls + "\" size=\"" +  jfldsz + "\">");
}

function jcap(){

var uword = hex_md5(document.getElementById(jfldid).value);

if (uword==cword[anum-1]) {
return true;
}

else {
alert("ERROR: The securty code is not valid!");
document.getElementById(jfldid).focus();
return false;
}
}

//  End -->