// Texto parpadeante para la inscripción a los pateus
var par=false;
function parpadearTextoPateus(){
  //var texto = textoP;
  document.getElementById('textoPateusParpadea').style.visibility= (par) ? 'visible' : 'hidden';
  par = !par;
}

//function CargarFotos(img, ancho, alto){
function CargarFotos(imagen){
  foto = new Image(); 
  foto.src = imagen;
  ancho = foto.width;
  alto = foto.height;
  derecha=(screen.width-ancho)/2;
  arriba=(screen.height-alto)/2;
  string="toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=1,width="+ancho+",height="+alto+",left="+derecha+",top="+arriba+"";
  abreVentana=window.open(imagen,"",string);
}
