function movein(box){
out = "!";
add = "'";
temp = "" + subcategorias[box];
while (temp.indexOf(out)>-1) {
pos= temp.indexOf(out);
temp = "" + (temp.substring(0, pos) + add + 
temp.substring((pos + out.length), temp.length));
}
if (document.getElementById)
if(categorias[box]){
document.getElementById("box_"+box).innerHTML= temp;
categorias[box]=false;
}
else{
document.getElementById("box_"+box).innerHTML= '';
categorias[box]=true;
}
else
document.location = links[box];
}
