-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
72 lines (57 loc) · 2.28 KB
/
contact.html
File metadata and controls
72 lines (57 loc) · 2.28 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
---
layout: noimage
group: navigation
linkname: contact
title: Contact Us - Needlefinder
pagetitle: Contact Us
order: 6
---
{% include JB/setup %}
<div class="container">
<div class="row">
<div class="col-md-4">
<h3>Our Location</h3>
<p><b>Address:</b></p>
<p>Brigham and Women's Hospital<br/>
Department of Radiology <br/>
75 Francis Street, Boston, MA 02115</p>
<p><b>Phone</b>: +1 617.732.5893</p>
<p><b>Email</b>: <SCRIPT TYPE="text/javascript">
emailE='bwh.harvard.edu'
emailE=('tkapur' + '@' + emailE)
document.write('<A href="mailto:' + emailE + '">' + emailE + '</a>')
</script></p>
</div>
<div id="map-container" class="col-md-8"></div>
</div>
<div class="row">
<hr/>
<h3>Directions</h3>
<p>
First, follow directions below to the Brigham and Women's Hospital. BWH is located between Huntington and Brookline Avenues, within the Longwood medical and academic area.
Once you are inside the Brigham's main lobby, take the Amory elevators across from the information desk down to L1.
When you leave the elevators, turn right.
Walk down the hallway: the third door on your right is marked SPL. Enter the reception area.
(Access outside of hospital business and visiting hours requires BWH identification.)<br/>
For more information, please visit: <a href="http://www.spl.harvard.edu/pages/Directions#Getting_to_the_SPL">http://www.spl.harvard.edu/pages/Directions#Getting_to_the_SPL</a>
</p>
<hr/>
</div>
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyBH-KGXxdRsZWwdwkE5J5zWQniX_DEQpQ8&callback=initMap"></script>
<script>
function init_map() {
var var_location = new google.maps.LatLng(42.3360582,-71.1090328);
var var_mapoptions = {
center: var_location,
zoom: 14
};
var var_marker = new google.maps.Marker({
position: var_location,
map: var_map,
title:"Surgical Planning Laboratory"});
var var_map = new google.maps.Map(document.getElementById("map-container"),
var_mapoptions);
var_marker.setMap(var_map);
}
google.maps.event.addDomListener(window, 'load', init_map);
</script>