$(document).ready(function(){

	// External Window Links
	$('a.new-window').click(function(){
		window.open(this.href);
		return false;
	});

	// Popup Window
	$('a.popup').click(function(){
		window.open(this.href,"_blank","width=725,height=529,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0");
		return false;
	});

});

