/**
 * JavaScript to detect links that should appear in pop-up windows
 * 	
 * Will be activated for any <a> link elements with a class of 'popup'
 */
$(document).ready(function(){ 
	$('a.popup').click(function(e){
		e.preventDefault();
		window.open(this.href,"popup");
	});
});