function cambio (idioma){
  
  document.form1.idioma.value = idioma;
  document.form1.submit ();
}

function opcion (opcion, subopcion) {
  document.form1.opcion.value = opcion;
  document.form1.subopcion.value = subopcion;
  document.form1.submit ();
}

function op_noticias(opcion, idnoticia) {
  document.form1.opcion.value = opcion;
  document.form1.id_noticia.value = idnoticia;
  document.form1.submit ();
}

function abrirPopup(Url)
{
  var l = (window.screen.width / 2) - 170;
  var t = (window.screen.height / 2) - 180;
  mywindow= window.open(Url,ObjLlamante,"height=400px; width=900px; screenY= "+ l +"px; screenX= "+t+"px; resizable=yes; scrollbars=yes");
}