answer1 = "tralalala";
q = new Array();

q['q1'] = '984b0ba8efcbb66ea395d9a1171566401f11153a';
q['q2'] = '9c251937443c017108275aea294f8cb5713986bc';
q['q3'] = 'eeceab2c30702fa9a2d68b9c24f51057d2bd0784';
q['q4'] = 'b69aade3f4f57c12e8cd71140a01f1163b3ab69b';
q['q5'] = '823b607bba26c7c881f6aef3abd6fe20e89fda55';
q['q6'] = '54a49c54233d6f90364a309d0978033e1bfa4831';
q['q7'] = '69e64e72c4eac305525ce4ae4b87346f2dbe869b';
q['q8'] = '828a36a5d7b02740f5f1062f7b30a4ffc374450b';
q['q9'] = '05fe3d044ab36f065fd6036c1d9a3f42598372e7';
q['q10'] = '8525efe1f1dd67c1786ba5b72e84bc096aade45e';
q['q11'] = '20262ccee339f619b28b28fe18175cc76512805b';
q['q12'] = 'dbe1fe15e8209ba28aec23075300253b7ba31cf6';
q['q13'] = '73955cb2ff31250d0069f942c7c7d2d81c72a473';
q['q14'] = '26be3be1fc6272acf19dba299988f76160bbd7d2';
q['q15'] = '831628aefe96406bf6be18e87bbaa302880cec19';
q['q16'] = '4bcdb048aecc7ed01ba360e7a4aea9525f7c673a';
q['q17'] = '045e99e21e7087cbba3792cb4c3c9c7e40ae2532';
q['q18'] = '07c8e2e43331c7876e6610db9597685fec9456d9';
q['q19'] = '63dbfffa7b85cf44de6a7f94927f012976846224';
q['q20'] = '6089bf182ce4f1d0ca518dbe4cce9b72ee12b36f';
q['q21'] = '9fd7a64a199e2dd3d0d089cc53416ad9ac16d6d1';
q['q22'] = '9665ba2734f4d18351ba09d792bbbe84542befd3';
q['q23'] = '15436ef66a4904be71d0959cf2ab0ae0340c6139';
q['q24'] = '610ab9d6add09053d8be3b26e5a823be03ac944a';
q['q25'] = 'd032d7b3c8aca53872f68731576e218eaa6df3c5';
q['q26'] = '0e7308e809ba71521ea4017b193450b0c91d90cb';
q['q27'] = '2f2ecaee1129fed6ac3992a6f11cd2bb4024916d';
q['q28'] = 'f70a6c4f708ad3be683d76bd29932e16811f3fef';
q['q29'] = 'a3afdad848ff3b35cc2e750d102fc9f112c8b034';
q['q30'] = '3891d1aece50d61fbba7873dff5b154c532c4534';
q['q31'] = 'cd63f902996c1402b6450fca7d43390884831dfb';
q['q32'] = '6b90c62c4e250ec80b026a99b79d12cdf7c20cd6';
q['q33'] = '325bc3684fdfa0538ae6f1544c08bcea93294cec';



function checkQ(str) {
	if(sha1Hash(document.getElementById(str).value.toUpperCase()) == q[str])
	{
		validate1(str);
	}
	else
	{
		validate2(str);
	}
	
}
function validate1(qstr) {
	if(document.getElementById(qstr).disabled == false) {
	document.getElementById(qstr).disabled = true;
	document.getElementById(qstr).style.border = '2px solid #00FF00'; 
	document.getElementById('correct').innerHTML = document.getElementById('correct').innerHTML*1 + 1;
	}
}

function validate2(qstr) {
	if(document.getElementById(qstr).value=='') {
		document.getElementById(qstr).style.border = '1px solid #A5ACB2'; 
	}
	else
	{
	document.getElementById(qstr).style.border = '2px solid #FF0000'; 
	}
}


function sha1Hash(msg)
{
    // constants [4.2.1]
    var K = [0x5a827999, 0x6ed9eba1, 0x8f1bbcdc, 0xca62c1d6];

    // PREPROCESSING 
 
    msg += String.fromCharCode(0x80);  // add trailing '1' bit to string [5.1.1]

    // convert string msg into 512-bit/16-integer blocks arrays of ints [5.2.1]
    var l = Math.ceil(msg.length/4) + 2;  // long enough to contain msg plus 2-word length
    var N = Math.ceil(l/16);              // in N 16-int blocks
    var M = new Array(N);

    for (var i=0; i<N; i++) {
        M[i] = new Array(16);
        for (var j=0; j<16; j++) {  // encode 4 chars per integer, big-endian encoding
            M[i][j] = (msg.charCodeAt(i*64+j*4)<<24) | (msg.charCodeAt(i*64+j*4+1)<<16) | 
                      (msg.charCodeAt(i*64+j*4+2)<<8) | (msg.charCodeAt(i*64+j*4+3));
        } // note running off the end of msg is ok 'cos bitwise ops on NaN return 0
    }
    // add length (in bits) into final pair of 32-bit integers (big-endian) [5.1.1]
    M[N-1][14] = ((msg.length-1) >>> 30) * 8;
    M[N-1][15] = ((msg.length-1)*8) & 0xffffffff;

    // set initial hash value [5.3.1]
    var H0 = 0x67452301;
    var H1 = 0xefcdab89;
    var H2 = 0x98badcfe;
    var H3 = 0x10325476;
    var H4 = 0xc3d2e1f0;

    // HASH COMPUTATION [6.1.2]

    var W = new Array(80); var a, b, c, d, e;
    for (var i=0; i<N; i++) {

        // 1 - prepare message schedule 'W'
        for (var t=0;  t<16; t++) W[t] = M[i][t];
        for (var t=16; t<80; t++) W[t] = ROTL(W[t-3] ^ W[t-8] ^ W[t-14] ^ W[t-16], 1);

        // 2 - initialise five working variables a, b, c, d, e with previous hash value
        a = H0; b = H1; c = H2; d = H3; e = H4;

        // 3 - main loop
        for (var t=0; t<80; t++) {
            var s = Math.floor(t/20); // seq for blocks of 'f' functions and 'K' constants
            var T = (ROTL(a,5) + f(s,b,c,d) + e + K[s] + W[t]) & 0xffffffff;
            e = d;
            d = c;
            c = ROTL(b, 30);
            b = a;
            a = T;
        }

        // 4 - compute the new intermediate hash value
        H0 = (H0+a) & 0xffffffff;  // note 'addition modulo 2^32'
        H1 = (H1+b) & 0xffffffff; 
        H2 = (H2+c) & 0xffffffff; 
        H3 = (H3+d) & 0xffffffff; 
        H4 = (H4+e) & 0xffffffff;
    }

    //alert (H0.toHexStr() + H1.toHexStr() + H2.toHexStr() + H3.toHexStr() + H4.toHexStr());
    return H0.toHexStr() + H1.toHexStr() + H2.toHexStr() + H3.toHexStr() + H4.toHexStr();
}

//
// function 'f' [4.1.1]
//
function f(s, x, y, z) 
{
    switch (s) {
    case 0: return (x & y) ^ (~x & z);
    case 1: return x ^ y ^ z;
    case 2: return (x & y) ^ (x & z) ^ (y & z);
    case 3: return x ^ y ^ z;
    }
}

//
// rotate left (circular left shift) value x by n positions [3.2.5]
//
function ROTL(x, n)
{
    return (x<<n) | (x>>>(32-n));
}

//
// extend Number class with a tailored hex-string method 
//   (note toString(16) is implementation-dependant, and  
//   in IE returns signed numbers when used on full words)
//
Number.prototype.toHexStr = function()
{
    var s="", v;
    for (var i=7; i>=0; i--) { v = (this>>>(i*4)) & 0xf; s += v.toString(16); }
    return s;
}
function resetForm() {
	
	for(i=1;i<34;i++) {
	document.getElementById('q'+i).disabled = false;
	}
	document.forms[0].reset();
}

