function popup(url) {
		window.open(url, 'ampliacion', 'width=800, height=600, scrollbars=no, resizable=no'); 
}

function overThumb(div){div.style.cursor='hand';}
function outThumb(div){div.style.cursor='default';}

function borra(url) {
		if(confirm('¿Estás seguro pecador?')){
			window.location.href=url;
		} 
}