function jukebox (ref, type) {
	window.open(
		'http://www.unbiased.co.uk/media-player/-/financial-advice2/' + ref,
		'jukebox','status=0,toolbar=0,location=0,menubar=0,scrollbars=0,width=530,height='+ (type == "audio" ? 170 : 530) + ',resizable=1'
	);
	return false;
}