$(document).ready(function() {	
	$('a.members-map').click(function() {
		newWin($(this).attr('href'),675,880);
		return false;
	});
});

// open new window
function newWin (href,width,height) {
    // window features
    var status="0";var toolbar="0";var location="0";var menubar="1";var directories="0";var resizable="1";var scrollbars="1"
    var features = "status=" + status + ",toolbar=" + toolbar + ",location=" + location + ",menubar=" + menubar + ",directories=" + directories + ",resizable=" + resizable + ",scrollbars=" + scrollbars + ",height=" + height + ",width=" + width;
    var newWin = window.open(href, "newWin", features);

    newWin.focus();   
    return false;
}