jQuery.noConflict();

jQuery(document).ready(function($){

	$('.map_link').click(function (e) { 
		e.preventDefault();
		
		newwindow=window.open(this.href,'name','height=600,width=800');
		if (window.focus) {newwindow.focus()}
	});
	
});