// JavaScript Document

var win
function ampliar_foto(url,h,w,titfoto){
if (h==0 && w==0) {
	h=330;
	w=440;
	}

    if  (typeof win!="undefined") {win.close()}
	posh= (screen.height - h) / 2;
    posw=(screen.width - w) / 2;

	opcions="toolbar=no,location=no,directories=no,menubar=no,scrollbars=no,border=0,height="+h+",width="+w+", top="+posh+",left="+posw;
	win=window.open("", "",opcions);	

	win.document.write ('<html>\n');
	win.document.write (' <head>\n');
	win.document.write ('  <title>'+titfoto+'</title>\n');
	win.document.write (' </head>\n');
	win.document.write (' <body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">\n');
	win.document.write ('  <img src="' + url + '" height='+h+' width='+w+' onclick="self.close()">\n');
	win.document.write (' </body>\n');
	win.document.write ('</html>\n');		
	}


