var win=null;

function popup(url_imagen,pie,ancho,alto){	
 	var img = new Image();
 	img.src = url_imagen;
	img.width = ancho;
	img.height = alto;
        derecha=(screen.width-ancho)/2;
        arriba=(screen.height-alto)/2;
	var winheight = img.height + 15;
	win=window.open('','','width='+img.width+',height='+winheight+',scrollbars=no,location=no,resizable=0,toolbar=0,status=no,top='+arriba+',left='+derecha+'');
	win.document.write ('<html>\n');
	win.document.write ('<head>\n');
	win.document.write ('<title>Anecyc</title>\n');
	win.document.write ('<link href="/css/foto.css" rel="stylesheet" type="text/css" />\n');
	win.document.write ('</head>\n');
	win.document.write ('<body>\n');
	win.document.write ('<div class="foto"><img src="/' + url_imagen + '" height='+img.height+' width='+img.width+' alt=""></div>\n');
	win.document.write ('<div class="borde"><div class="pie">:: '+pie+'</div></div>\n');
	win.document.write ('</body>\n');
	win.document.write ('</html>\n');
        win.document.close(); 	
}

function popup_flash(url_imagen,pie,ancho,alto){	
 	var img = new Image();
 	img.src = url_imagen;
	img.width = ancho;
	img.height = alto;
	var winheight = img.height + 15;
	win=window.open('','','width='+img.width+',height='+winheight+',scrollbars=no,resizable=0,toolbar=0,status=1');
	win.document.write ('<html>\n');
	win.document.write ('<head>\n');
	win.document.write ('<title>ANECYC</title>\n');
	win.document.write ('<link href="../../css/foto.css" rel="stylesheet" type="text/css" />\n');
	win.document.write ('</head>\n');
	win.document.write ('<body>\n');
	win.document.write ('<div class="foto"><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="'+ancho+'" height="'+alto+'">');
	win.document.write ('<param name="movie" value="'+url_imagen+'.swf" /><param name="quality" value="high" />');
	win.document.write ('<embed src="'+url_imagen+'.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="'+ancho+'" height="'+alto+'"></embed></object></div>\n');
	win.document.write ('<div class="borde"><div class="pie">:: '+pie+'</div><div class="cierre"><a href="javascript:this.close()"><img src="../../images/cerrar.gif" alt="" /></a></div></div>\n');
	win.document.write ('</body>\n');
	win.document.write ('</html>\n');	
}
