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