

function recomendar(){
	window.open("recomendar.php?enlace="+window.location.href, 'Recomienda','width=480,height=205,scrollbars=no,top='+(screen.height-205)/2+',left='+(screen.width-480)/2);	
}

function imprimir() {

	texto=document.getElementById('articulo').innerHTML;
	popup=window.open('','','');
	popup.document.write('<html>\n<head>\n<title>Celda seleccionada</title>\n');
	popup.document.write('<link href="util/st.css" rel="stylesheet" type="text/css">');
	popup.document.write('</head>\n');
	popup.document.write('<body onLoad="print()">\n');
	popup.document.write(texto+'\n');
	popup.document.write('</body></html>');
	popup.document.close();
	setTimeout('popup.close()',2000)

}

function ampliada(foto,carpeta){
	window.open('ampliada.php?carpeta='+carpeta+'&foto='+foto, 'ampliada','width=6,height=6,scrollbars=no,top='+(screen.height-400)/2+',left='+(screen.width-300)/2);
}