  //  función que manda las variables a otra pagina
function checkFrameset() {
  if (parent.frames.length != 5) {
    top.location.href = 'index.html?var1='+location.pathname.substring(1,3)+'&var2='+location.pathname.substring(1); 
  }
}
