<!-- // © Iddea Soluciones Internet, S.L. 2000 webmaster@iddea.es César Sánchez Novo

var ventana = null;
function abreventana(pagina,nombre,w,h,scroll){
izquierda = (screen.width) ? (screen.width-w)/2 : 0;
arriba = (screen.height) ? (screen.height-h)/2 : 0;
atributos =
'height='+h+',width='+w+',top='+arriba+',left='+izquierda+',scrollbars='+scroll+''
ventana = window.open(pagina,nombre,atributos)
}

//  -->