/* ##############################
         SCRIPTS GENERALES  
   ############################## */

function mod(modulo) {
  location.href = "index.php" + modulo;
}

function url(url,target) {
  if(target != "new") {
    location.href = url;
  }
  else {
    open(url,'','toolbar = 1, location = 1, directories = 1, status = 1, menubar = 1, scrollbars = 1, resizable = 1');
  }
}

function historial() {
  window.open('extra/historial.php','Radio','width=405, height=60, left=10, top=10, scrollbars=0, resize=0');
}

/* ##############################
          SCRIPTS DEL MENÚ       
   ############################## */

function mnuClass(id,action){
  if (action == 1) {
    var el = document.getElementById(id); 
    el.className='mnuOver';
  }
  else {
    var el = document.getElementById(id); 
    el.className='mnuOut';
  }
} 

function smnuClass(id,action){
  if (action == 1) {
    var el = document.getElementById(id); 
    el.className='smnuOver';
  }
  else {
    var el = document.getElementById(id); 
    el.className='smnuOut';
  }
} 

function smnuSClass(id,action){
  if (action == 1) {
    var el = document.getElementById(id); 
    el.className='mnuSubS_over';
  }
  else {
    var el = document.getElementById(id); 
    el.className='mnuSubS_out';
  }
}

function mnu(id){
  if (document.getElementById(id).style.display == 'none') {
    document.getElementById('smnu_01').style.display = 'none';
    document.getElementById('smnu_02').style.display = 'none';
    document.getElementById('smnu_03').style.display = 'none';
    document.getElementById('smnu_05').style.display = 'none';
    document.getElementById('smnu_06').style.display = 'none';
    document.getElementById('smnu_07').style.display = 'none';
    document.getElementById(id).style.display = 'block';
  }
  else {
    document.getElementById(id).style.display = 'none';
  }
}

function mnuS(id){
  if (document.getElementById(id).style.display == 'none') {
    document.getElementById(id).style.display = 'block';
  }
  else {
    document.getElementById(id).style.display = 'none';
  }
}

function filter(cer,img) {
 document.getElementById(img).style.filter='Alpha(opacity='+cer+')';
}

function iMGP(view,type) {
  window.open('img/img.php?type='+type+'&view='+view,'img','width=100, height=100, left=0, top=0, scrollbars=1, resize=1');
}

function figura(id) {
  window.open('varios/img.php?type=figura&view='+id,'img','width=100, height=100, left=0, top=0, scrollbars=1, resize=1');
}

function encuesta(id) {
  window.open('extra/questions.php?id='+id,'encuestas','width=320, height=300, left=0, top=0, scrollbars=1, resize=1');
}