
function open_new_window( link_class, title, attributes ) {//Open a new window (pop-up)
	$( link_class ).click(
		function() {
			window.open( this.href, title, attributes );
			return false;
		}
	);
}