// JavaScript Document
function abre(img,an,al){
	an2=an+15
	al2=al+64
	var v=open('','v','left=0,top=0, width='+an2+',height='+al2+',resizable=0,status=yes')
	v.document.open() <!-- abrir una pagina nueva dentro de la ventana -->
	v.resizeTo(an2,al2) <!-- Para cambiar el alto y el ancho -->
	v.document.write('<title>Totalpadel.com</title>')
	v.document.write('<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">')
	v.document.write('<a href="#"><img src="'+img+'" width="'+an+'" height="'+al+'" border="0" onClick="self.close()"></a>')
	v.focus ()
	v.document.write('</body>')
}
