function start(){
 hidden();
 erase('spawns');
 erase('solpawns');
}
function erase(quien){
 var tabla = document.getElementById(quien);
 tabla.style.display = 'none';
 var spans = tabla.getElementsByTagName('span');
 for (var i=0;i<spans.length;i++){
  spans[i].style.display='none';
 }
}
function hidden(show){
 var marcas = document.getElementById('marcas');
 var soluciones = document.getElementById('soluciones');
 marcas.style.display = 'none';
 soluciones.style.display = 'none';
 if(typeof show != "number"){
  return;
 }
 if (show==1){
  marcas.style.display = '';
 } else {
  soluciones.style.display = ''; 
 }
 //return false;
}
function hitext(wich,where){
 var texto = document.getElementById(wich);
 document.getElementById(where).style.display = '';
 texto.style.display = 'block';
}
function byetext(wich,where){
 var textoout = document.getElementById(wich);
 document.getElementById(where).style.display = 'none';
 textoout.style.display = 'none';
}
function openNewWindow() {
 popupWin = window.open('http://mekamatiks.com/',
 'open_window',
 'menubar, toolbar, location, directories, status, scrollbars, resizable, dependent, width=640, height=480, left=0, top=0')
}
window.onload=start;
