function open_audioplayer(href) {
  open_popup(href, 'audioplayer', '410', '550');
}

function open_popup(href, name, width, height) {
	var win = window.open(href, name, "width="+ width +",height="+ height +",directories=no,location=no,menubar=no,resizable=no,scrollbars=no,status=no,titlebar=no,toolbar=no");
	win.focus();
}

function format_images() {
  $$('.post img').each( function(img) {
    img.wrap('div', { 'class': 'img-wrapper' });
    img.up('p').setStyle({margin:0});
  });
}

function debug(msg) {
	console.log(msg);
}
