function checkCaptcha2() { if (document.forms.loginform.email.value!='') { showCaptcha(); } }
function showCaptcha2() { if (document.getElementById('cApTCHatd').style.visibility=='hidden') { document.getElementById('cApTCHatd').style.visibility='visible'; document.getElementById('cApTCHainput').innerHTML='<img id="cApTCHaimg" src="/cap.php" border="0"><br /><input type="text" name="captcha" style="font-size:10px;width:100px; height:15px;"/>'; document.getElementById('cApTCHaimg').src='/cap.php?rand='+Math.floor(Math.random()*1000000); document.getElementById('cApTCHamsg').innerHTML='Type the Security Code in the box below'; } }
function showCaptcha() { }
function checkCaptcha() { }