$(document).ready(function(){

	// External Window Links
	$('a.new-window').click(function(){
		window.open(this.href);
		return false;
	});
	
	$('a.comments-window').click(function(){
	window.open(this.href,"_blank","width=430,height=450,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=0");
			return false;
		});

});
