// $('.detalle_anuncio').live('click', function(e) {
	// if (e.button == 0) {
		// e.preventDefault();
		// mostrar_detalle( $(this).attr('href') );
	// }
// });

function mostrar_detalle(url) {
	if(typeof __popup_window != 'undefined') {
		__popup_window.close();
	}
	__popup_window = window.open( url, 'Detalles', 'scrollbars=1,menubar=0,resizable=1,width=800,height=680');
}