/********************************************************************************************************
 * Funciones para abrir ventanas
 *
 ********************************************************************************************************/
 
function abre_acceso(remis) {
   wtes = window.open(remis,'tg','width=490,height=490,left=30,top=30,scrollbars=yes,resizable=1'); 
}

function abre_foto(caderot,alto,ancho) {
   if (ancho > 750)
      ancho = 750;
   else
      ancho = parseInt(ancho)+40;
   if (alto > 550)
      alto = 550;
   else
      alto = parseInt(alto)+40;
	wtes = window.open(caderot,'tg','width=' + ancho + ',height=' + alto + ',left=0,top=0,scrollbars=yes,resizable=1'); 
}

function abre_noticia(pendas) {
   wtes = window.open(pendas,'tg','width=650,height=520,left=0,top=0,scrollbars=yes,resizable=1'); 
}

