function trim(s) 
{
	return s.replace(/^\s+|\s+$/g,'');
}

$(document).ready(function() {
	$('a.external').click(function(){ 
		window.open(this); return false;
	});
	
	$('a.popup').click(function() {
		window.open(this, '', 'width=900,height=800,resizable=1,scrollbars=1'); return false;						
	});
});
