function jobview_selectLocation(lat, lng, name, addr) {
var embed_url = "https://www.google.com/maps/embed/v1/place?key=AIzaSyDtcE2jOqX7Um93J4170joHlnA67OeR1Es&q=" + encodeURIComponent(name + " " + addr);
var search_url = "https://www.google.com/maps/search/?api=1&query=" + lat + "," + lng;
// Update the iframe instead of an image
$("#jobview_BigMap").attr("src", embed_url);
// Update links for users to open in Google Maps
$("#jobview_link").attr("href", search_url);
$("#jobview_static_map_link").attr("href", search_url);
// Update name and address
$("#jobview_name").html(name);
$("#jobview_address").html(addr);
}
jQuery(document).ready(function () {
$("#reset_jobdescription img").each(function () {
if (!$(this).hasClass('img-responsive')) $(this).addClass('img-responsive');
});
});