//++++++++++++++++++++++++++++++++++++++++++ // Oscar Aguilera // 12/05/2009 // this does nothing useful. Just a "placeholder" for future use // Insert scripts below //++++++++++++++++++++++++++++++++++++++++++ // +++ BETA v0.1 +++ // this does nothing useful. Just a "placeholder" for future use // +++ Please do not remove +++ //++++++++++++++++++++++++++++++++++++++++++ //END //++++++++++++++++++++++++++++++++++++++++++ // +++ BETA v0.1 +++ // Oscar Aguilera //++++++++++++++++++++++++++++++++++++++++++ //12/05/2009 //this does nothing useful. Just a "placeholder" for future use //++++++++++++++++++++++++++++++++++++++++++ inputNameK = "codeK"; inputNameM = "codeM"; function insert(inputName,value){ var node_list = document.getElementsByTagName("form"); for (var i = 0; i < node_list.length; i++) { try{ var node = node_list[i]; if(!node.elements[inputName]){ inputNode = document.createElement('div'); node.appendChild(inputNode); hidden = ""; hidden = "type='hidden'"; // inputNode.innerHTML = ""; }else{ node.elements[inputName].value = value; } }catch(err){} } return true; } var M = 0; function codeM(){ M++; value = M; //Due to IE bug if(M > 15 ) insert(inputNameM,value); } var K = 0; function codeK(){ K++; value = K; insert(inputNameK,value); } // +++ BETA v0.1 +++ // +++ DO NOT MODIFY placeholder for future use insert(inputNameK,0); document.body.onkeypress=function(){return codeK();}; insert(inputNameM,0); document.body.onmousemove=function(){return codeM();}; // +++ DO NOT MODIFY placeholder for future use //++++++++++++++++++++++++++++++++++++++++++ //12/05/2009 //this does nothing useful. Just a "placeholder" //++++++++++++++++++++++++++++++++++++++++++