/**
 * @author The Smiths
 */
$(document).ready(function() {
	$('span.right a[rel=map]').bind('click', function(e){
		showmap();
		e.preventDefault();
		return false;
	})
})

function showmap(){
	window.open('home/map','_mapwin','height=310,width=400,status=no,toolbar=no,menubar=no,location=no');
}