function clicker(x){
var thediv=document.getElementById('displaybox');
if(thediv.style.display == "none"){
thediv.style.display = "";
if(x=='amigos'){
thediv.innerHTML = "
" }
if(x=='email'){
thediv.innerHTML = "" }
}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();
}