function draw_marker(latitude, longitude, name, description) {
   	var html = "<div class='map_info'><h2>" + name + "</h2><div class='map_description'>" + description + "</div></div>";
    return map_marker(latitude, longitude, html, false, true);
}

/* because of contact and privacy pages
$(document).ready(function(){
	$("a[href^='http:']:not([href*='" + window.location.host + "'][target='_blank'])").live('click', function(){
		$(this).attr('target','_blank');
	});
});*/