
function AbrirVentana(imagesrc,winwidth,winheight){
winleft=(screen.width-winwidth)/2;
wintop=(screen.height-winheight)/2;
var look='top='+wintop+',left='+winleft+',width='+winwidth+',height='+winheight+','
popwin=window.open("","",look)
popwin.document.open()
popwin.document.write('<title>Imagen Galería</title><body topmargin=0 leftmargin=0 bottommargin=0 backgroŽdfund="'+imagesrc+'"><img src="'+imagesrc+'"></body>')
popwin.document.close()
}

