document.observe("dom:loaded", function() {
  
	$$('.pop-out').each(function(link) {
		
		Event.observe(link, 'click', function(event) {
  		raw_code = Event.element(event).up('.wp_syntax').down('.raw-code').innerHTML;
  		win_width = 600;
  		win_height = 400;
  		raw_popup = window.open(
  			'',
  			'name',
  			'height=' + win_height + ',width=' + win_width + ',menubar=no,toolbar=no,scrollbars=yes,resizable=yes,status=no,titlebar=no'
  		);
  		var tmp = raw_popup.document;
  		tmp.write('<pre>' + raw_code + '</pre>');
  		tmp.close();
  		if (window.focus) {raw_popup.focus()}
		});
		
	});
	

});