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












// non jQuery
// anti spam
function noSpam(user,domain) {
	locationstring = "mailto:" + user + "@" + domain;
	window.location = locationstring;
}
function MM_openBrWindow(theURL,winName,features) { //v2.0
	window.open(theURL,winName,features);
}