function showpic(foto) {
x=10;
y=10;
width=400;
height=298;
if(window.screen){
 per_ancho=(width/800)*100;//porcentaje screen-ancho
 per_alto=(height/width)*100;//porcentaje de ancho-alto
 win_ancho=(screen.width*per_ancho)/100;//ancho de la ventana
 win_alto=(win_ancho*per_alto)/100;//alto de la ventana
 x=(screen.width-win_ancho)/2;//centra x
 y=(screen.height-win_alto)/2;//centra y
 y=y-40;
 if (y<0) {
  y=0;
  }
 }
 s="showpic2.html?pic="+foto;
w=window.open(s,"picshow","width="+width+",height="+height+",left="+x+",top="+y+",resizable=0,status=1,toolbar=0,scrollbars=0");
if (window.screen) {
 w.focus();
 }
}


function openbelbios() {
 var w = window.open("belbios.html","sbb","width=790,height=400");
 if (window.focus) {
  w.focus();
 }
}
