function clicker(x){ var thediv=document.getElementById('displaybox'); if(thediv.style.display == "none"){ thediv.style.display = ""; if(x=='amigos'){ thediv.innerHTML = "
Client Area
You must login to access this page. These login details differ from your websites control panel username and password.
Email:
Password:
Tech Support
" } if(x=='email'){ thediv.innerHTML = "
WebMail Login
You must login to access this page. These login details differ from your websites control panel username and password.
Email:
Password:
 
" } }else{ thediv.style.display = "none"; thediv.innerHTML = ''; } return false; } function isInt(x) { var y=parseInt(x); if (isNaN(y)) return false; return x==y && x.toString()==y.toString(); }