function js_Ventana(www,ancho,alto,titulo,target)
{
  var destino=www+'#'+target;
  var ventana=window.open(destino,titulo,'status=no,location=0,0, scrollbars=no, resizable=no,width='+ancho+',height='+alto);
  ventana.opener.top.name="opener";
  ventana.focus();
}
function popup(id)
{
  var ventana=window.open("otras/popimg.asp?idfoto="+id,"pop","status='no',location=0,0, scrollbars=no, resizable=no,width=640,height=480");
  ventana.opener.top.name="opener";
  ventana.focus();
}
function isEmail(str)
{
  var supported = 0;
  if (window.RegExp)
  {
  var tempStr = "a";
  var tempReg = new RegExp(tempStr);
  if (tempReg.test(tempStr))
   	supported = 1;
  }
  if (!supported)
	return (str.indexOf(".") > 2) && (str.indexOf("@") > 0);
		
  var r1 = new RegExp("(@.*@)|(\\.\\.)|(@\\.)|(^\\.)");
  var r2 = new RegExp("^.+\\@(\\[?)[a-zA-Z0-9\\-\\.]+\\.([a-zA-Z]{2,4}|[0-9]{1,3})(\\]?)$");
		
  return (!r1.test(str) && r2.test(str));
}

function chequeo_sub()
{
  vari = isEmail(document.subscripcion.email.value);
  if (!vari)
	alert('Su correo electrónico no parece válido.');
  else
	document.subscripcion.submit();
}
function chequeo()
{
  vari = isEmail(document.envio.MAILFROM.value);
  nombre = document.envio.NOMBRE.value;  
  
  if (!vari)
	alert('Su correo electrónico no parece válido.\nIntrodúzcalo en el campo indicado.');
  else if(!nombre)
    alert('Introduzca su nombre.');
  else
	document.envio.submit();
}

var idant=0;
function mostrar_submenu(id, idsub)
{  
  if(document.getElementById('menu_'+id).className!='menu_selec'){
    document.getElementById('menu_'+id).className='menu_selec2';
    if(idant)
      document.getElementById('menu_'+idant).className='';
    idant=id;
  }
  
  document.getElementById('submenu_sup').style.display='none';
  document.getElementById('ico_load_menu').style.display='';  
  var cache = Math.round(Math.random()*1000);
  ajax('load','ajax.asp?funcion=mostrar_submenu&idseccion='+id+'&idsub='+idsub+'&cache='+cache,'submenu_sup',submenu_ok);
}

function submenu_ok()
{	
  document.getElementById('ico_load_menu').style.display='none';	
  document.getElementById('submenu_sup').style.display='';  
}

function visor_img(img_visor, idimagen, pie)
{
  document.getElementById('visor_img_der').style.display='none';
  document.getElementById('visor_ico_load').style.display='';
  var cache = Math.round(Math.random()*1000);
  ajax('load','ajax.asp?funcion=mostrar_img_visor&img_visor='+img_visor+'&idimagen='+idimagen+'&pie='+pie+'&cache='+cache,'visor_img_der',img_visor_ok);
}

function img_visor_ok()
{	
  document.getElementById('visor_ico_load').style.display='none';
  document.getElementById('visor_img_der').style.display='';
}