Regular Expressions 101

Save & Share

Flavor

  • PCRE2 (PHP >=7.3)
  • PCRE (PHP <7.3)
  • ECMAScript (JavaScript)
  • Python
  • Golang
  • Java 8
  • .NET 7.0 (C#)
  • Rust
  • Regex Flavor Guide

Function

  • Match
  • Substitution
  • List
  • Unit Tests

Tools

Sponsors
There are currently no sponsors. Become a sponsor today!
An explanation of your regex will be automatically generated as you type.
Detailed match information will be displayed here automatically.
  • All Tokens
  • Common Tokens
  • General Tokens
  • Anchors
  • Meta Sequences
  • Quantifiers
  • Group Constructs
  • Character Classes
  • Flags/Modifiers
  • Substitution
  • A single character of: a, b or c
    [abc]
  • A character except: a, b or c
    [^abc]
  • A character in the range: a-z
    [a-z]
  • A character not in the range: a-z
    [^a-z]
  • A character in the range: a-z or A-Z
    [a-zA-Z]
  • Any single character
    .
  • Alternate - match either a or b
    a|b
  • Any whitespace character
    \s
  • Any non-whitespace character
    \S
  • Any digit
    \d
  • Any non-digit
    \D
  • Any word character
    \w
  • Any non-word character
    \W
  • Non-capturing group
    (?:...)
  • Capturing group
    (...)
  • Zero or one of a
    a?
  • Zero or more of a
    a*
  • One or more of a
    a+
  • Exactly 3 of a
    a{3}
  • 3 or more of a
    a{3,}
  • Between 3 and 6 of a
    a{3,6}
  • Start of string
    ^
  • End of string
    $
  • A word boundary
    \b
  • Non-word boundary
    \B

Regular Expression

/
/
g

Test String

Code Generator

Generated Code

#include <StringConstants.au3> ; to declare the Constants of StringRegExp #include <Array.au3> ; UDF needed for _ArrayDisplay and _ArrayConcatenate Local $sRegex = "google.\maps\.LatLng\(([\w. \,\-]+)\)" Local $sString = "<script type="text/javascript">" & @CRLF & _ " $(function() {" & @CRLF & _ " var myLatlng = new google.maps.LatLng(51.159151, 1.289075);" & @CRLF & _ " var icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.png';" & @CRLF & _ " if (/MSIE (\d+\.\d+);/.test(navigator.userAgent)) {" & @CRLF & _ " var ieversion = new Number(RegExp.$1);" & @CRLF & _ " if (ieversion < 7)" & @CRLF & _ " icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.gif';" & @CRLF & _ " }" & @CRLF & _ " var locationMarker = new google.maps.Marker({" & @CRLF & _ " position: myLatlng," & @CRLF & _ " map: map," & @CRLF & _ " icon: new google.maps.MarkerImage(icon)," & @CRLF & _ " title: '55 Sandwich Road'" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " var markerListener = google.maps.event.addListener(locationMarker, 'click', function() {" & @CRLF & _ " window.location.href = 'location-results/item/55-sandwich-road';" & @CRLF & _ " google.maps.event.removeListener(markerListener);" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " markerBounds.extend(myLatlng);" & @CRLF & _ " });" & @CRLF & _ " </script>" & @CRLF & _ " " & @CRLF & _ " <script type="text/javascript">" & @CRLF & _ " $(function() {" & @CRLF & _ " var myLatlng = new google.maps.LatLng(51.315186, -2.211529);" & @CRLF & _ " var icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.png';" & @CRLF & _ " if (/MSIE (\d+\.\d+);/.test(navigator.userAgent)) {" & @CRLF & _ " var ieversion = new Number(RegExp.$1);" & @CRLF & _ " if (ieversion < 7)" & @CRLF & _ " icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.gif';" & @CRLF & _ " }" & @CRLF & _ " var locationMarker = new google.maps.Marker({" & @CRLF & _ " position: myLatlng," & @CRLF & _ " map: map," & @CRLF & _ " icon: new google.maps.MarkerImage(icon)," & @CRLF & _ " title: '65a Newtown'" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " var markerListener = google.maps.event.addListener(locationMarker, 'click', function() {" & @CRLF & _ " window.location.href = 'location-results/item/65a-newtown';" & @CRLF & _ " google.maps.event.removeListener(markerListener);" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " markerBounds.extend(myLatlng);" & @CRLF & _ " });" & @CRLF & _ " </script>" & @CRLF & _ " " & @CRLF & _ " <script type="text/javascript">" & @CRLF & _ " $(function() {" & @CRLF & _ " var myLatlng = new google.maps.LatLng(52.610387, -1.141246);" & @CRLF & _ " var icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.png';" & @CRLF & _ " if (/MSIE (\d+\.\d+);/.test(navigator.userAgent)) {" & @CRLF & _ " var ieversion = new Number(RegExp.$1);" & @CRLF & _ " if (ieversion < 7)" & @CRLF & _ " icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.gif';" & @CRLF & _ " }" & @CRLF & _ " var locationMarker = new google.maps.Marker({" & @CRLF & _ " position: myLatlng," & @CRLF & _ " map: map," & @CRLF & _ " icon: new google.maps.MarkerImage(icon)," & @CRLF & _ " title: '67-71 Lansdowne Road'" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " var markerListener = google.maps.event.addListener(locationMarker, 'click', function() {" & @CRLF & _ " window.location.href = 'location-results/item/67-71-lansdowne-road';" & @CRLF & _ " google.maps.event.removeListener(markerListener);" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " markerBounds.extend(myLatlng);" & @CRLF & _ " });" & @CRLF & _ " </script>" & @CRLF & _ " " & @CRLF & _ " <script type="text/javascript">" & @CRLF & _ " $(function() {" & @CRLF & _ " var myLatlng = new google.maps.LatLng(51.315862, -2.215363);" & @CRLF & _ " var icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.png';" & @CRLF & _ " if (/MSIE (\d+\.\d+);/.test(navigator.userAgent)) {" & @CRLF & _ " var ieversion = new Number(RegExp.$1);" & @CRLF & _ " if (ieversion < 7)" & @CRLF & _ " icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.gif';" & @CRLF & _ " }" & @CRLF & _ " var locationMarker = new google.maps.Marker({" & @CRLF & _ " position: myLatlng," & @CRLF & _ " map: map," & @CRLF & _ " icon: new google.maps.MarkerImage(icon)," & @CRLF & _ " title: '82 Park Street'" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " var markerListener = google.maps.event.addListener(locationMarker, 'click', function() {" & @CRLF & _ " window.location.href = 'location-results/item/park-street';" & @CRLF & _ " google.maps.event.removeListener(markerListener);" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " markerBounds.extend(myLatlng);" & @CRLF & _ " });" & @CRLF & _ " </script>" & @CRLF & _ " " & @CRLF & _ " <script type="text/javascript">" & @CRLF & _ " $(function() {" & @CRLF & _ " var myLatlng = new google.maps.LatLng(54.490833, -0.627667);" & @CRLF & _ " var icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.png';" & @CRLF & _ " if (/MSIE (\d+\.\d+);/.test(navigator.userAgent)) {" & @CRLF & _ " var ieversion = new Number(RegExp.$1);" & @CRLF & _ " if (ieversion < 7)" & @CRLF & _ " icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.gif';" & @CRLF & _ " }" & @CRLF & _ " var locationMarker = new google.maps.Marker({" & @CRLF & _ " position: myLatlng," & @CRLF & _ " map: map," & @CRLF & _ " icon: new google.maps.MarkerImage(icon)," & @CRLF & _ " title: 'Abbey House Whitby'" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " var markerListener = google.maps.event.addListener(locationMarker, 'click', function() {" & @CRLF & _ " window.location.href = 'location-results/item/abbey-house-whitby';" & @CRLF & _ " google.maps.event.removeListener(markerListener);" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " markerBounds.extend(myLatlng);" & @CRLF & _ " });" & @CRLF & _ " </script>" & @CRLF & _ " " & @CRLF & _ " <script type="text/javascript">" & @CRLF & _ " $(function() {" & @CRLF & _ " var myLatlng = new google.maps.LatLng(53.987784, -1.55211);" & @CRLF & _ " var icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.png';" & @CRLF & _ " if (/MSIE (\d+\.\d+);/.test(navigator.userAgent)) {" & @CRLF & _ " var ieversion = new Number(RegExp.$1);" & @CRLF & _ " if (ieversion < 7)" & @CRLF & _ " icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.gif';" & @CRLF & _ " }" & @CRLF & _ " var locationMarker = new google.maps.Marker({" & @CRLF & _ " position: myLatlng," & @CRLF & _ " map: map," & @CRLF & _ " icon: new google.maps.MarkerImage(icon)," & @CRLF & _ " title: 'Aire House'" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " var markerListener = google.maps.event.addListener(locationMarker, 'click', function() {" & @CRLF & _ " window.location.href = 'location-results/item/aire-house';" & @CRLF & _ " google.maps.event.removeListener(markerListener);" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " markerBounds.extend(myLatlng);" & @CRLF & _ " });" & @CRLF & _ " </script>" & @CRLF & _ " " & @CRLF & _ " <script type="text/javascript">" & @CRLF & _ " $(function() {" & @CRLF & _ " var myLatlng = new google.maps.LatLng(51.869974, -2.232658);" & @CRLF & _ " var icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.png';" & @CRLF & _ " if (/MSIE (\d+\.\d+);/.test(navigator.userAgent)) {" & @CRLF & _ " var ieversion = new Number(RegExp.$1);" & @CRLF & _ " if (ieversion < 7)" & @CRLF & _ " icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.gif';" & @CRLF & _ " }" & @CRLF & _ " var locationMarker = new google.maps.Marker({" & @CRLF & _ " position: myLatlng," & @CRLF & _ " map: map," & @CRLF & _ " icon: new google.maps.MarkerImage(icon)," & @CRLF & _ " title: 'Alexandra House'" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " var markerListener = google.maps.event.addListener(locationMarker, 'click', function() {" & @CRLF & _ " window.location.href = 'location-results/item/alexandra-house';" & @CRLF & _ " google.maps.event.removeListener(markerListener);" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " markerBounds.extend(myLatlng);" & @CRLF & _ " });" & @CRLF & _ " </script>" & @CRLF & _ " " & @CRLF & _ " <script type="text/javascript">" & @CRLF & _ " $(function() {" & @CRLF & _ " var myLatlng = new google.maps.LatLng(52.491164, -2.000265);" & @CRLF & _ " var icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.png';" & @CRLF & _ " if (/MSIE (\d+\.\d+);/.test(navigator.userAgent)) {" & @CRLF & _ " var ieversion = new Number(RegExp.$1);" & @CRLF & _ " if (ieversion < 7)" & @CRLF & _ " icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.gif';" & @CRLF & _ " }" & @CRLF & _ " var locationMarker = new google.maps.Marker({" & @CRLF & _ " position: myLatlng," & @CRLF & _ " map: map," & @CRLF & _ " icon: new google.maps.MarkerImage(icon)," & @CRLF & _ " title: 'Alphonsus House'" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " var markerListener = google.maps.event.addListener(locationMarker, 'click', function() {" & @CRLF & _ " window.location.href = 'location-results/item/alphonsus-house';" & @CRLF & _ " google.maps.event.removeListener(markerListener);" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " markerBounds.extend(myLatlng);" & @CRLF & _ " });" & @CRLF & _ " </script>" & @CRLF & _ " " & @CRLF & _ " <script type="text/javascript">" & @CRLF & _ " $(function() {" & @CRLF & _ " var myLatlng = new google.maps.LatLng(54.490834, -0.627652);" & @CRLF & _ " var icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.png';" & @CRLF & _ " if (/MSIE (\d+\.\d+);/.test(navigator.userAgent)) {" & @CRLF & _ " var ieversion = new Number(RegExp.$1);" & @CRLF & _ " if (ieversion < 7)" & @CRLF & _ " icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.gif';" & @CRLF & _ " }" & @CRLF & _ " var locationMarker = new google.maps.Marker({" & @CRLF & _ " position: myLatlng," & @CRLF & _ " map: map," & @CRLF & _ " icon: new google.maps.MarkerImage(icon)," & @CRLF & _ " title: 'Anchor & Haven House'" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " var markerListener = google.maps.event.addListener(locationMarker, 'click', function() {" & @CRLF & _ " window.location.href = 'location-results/item/anchor---haven-house';" & @CRLF & _ " google.maps.event.removeListener(markerListener);" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " markerBounds.extend(myLatlng);" & @CRLF & _ " });" & @CRLF & _ " </script>" & @CRLF & _ " " & @CRLF & _ " <script type="text/javascript">" & @CRLF & _ " $(function() {" & @CRLF & _ " var myLatlng = new google.maps.LatLng(50.746262, -1.936039);" & @CRLF & _ " var icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.png';" & @CRLF & _ " if (/MSIE (\d+\.\d+);/.test(navigator.userAgent)) {" & @CRLF & _ " var ieversion = new Number(RegExp.$1);" & @CRLF & _ " if (ieversion < 7)" & @CRLF & _ " icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.gif';" & @CRLF & _ " }" & @CRLF & _ " var locationMarker = new google.maps.Marker({" & @CRLF & _ " position: myLatlng," & @CRLF & _ " map: map," & @CRLF & _ " icon: new google.maps.MarkerImage(icon)," & @CRLF & _ " title: 'Anchor House'" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " var markerListener = google.maps.event.addListener(locationMarker, 'click', function() {" & @CRLF & _ " window.location.href = 'location-results/item/anchor-house';" & @CRLF & _ " google.maps.event.removeListener(markerListener);" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " markerBounds.extend(myLatlng);" & @CRLF & _ " });" & @CRLF & _ " </script>" & @CRLF & _ " " & @CRLF & _ " <script type="text/javascript">" & @CRLF & _ " $(function() {" & @CRLF & _ " var myLatlng = new google.maps.LatLng(54.352596, -6.667938);" & @CRLF & _ " var icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.png';" & @CRLF & _ " if (/MSIE (\d+\.\d+);/.test(navigator.userAgent)) {" & @CRLF & _ " var ieversion = new Number(RegExp.$1);" & @CRLF & _ " if (ieversion < 7)" & @CRLF & _ " icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.gif';" & @CRLF & _ " }" & @CRLF & _ " var locationMarker = new google.maps.Marker({" & @CRLF & _ " position: myLatlng," & @CRLF & _ " map: map," & @CRLF & _ " icon: new google.maps.MarkerImage(icon)," & @CRLF & _ " title: 'Apple Mews Care Home'" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " var markerListener = google.maps.event.addListener(locationMarker, 'click', function() {" & @CRLF & _ " window.location.href = 'location-results/item/apple-mews-care-home';" & @CRLF & _ " google.maps.event.removeListener(markerListener);" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " markerBounds.extend(myLatlng);" & @CRLF & _ " });" & @CRLF & _ " </script>" & @CRLF & _ " " & @CRLF & _ " <script type="text/javascript">" & @CRLF & _ " $(function() {" & @CRLF & _ " var myLatlng = new google.maps.LatLng(53.641492, -2.994979);" & @CRLF & _ " var icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.png';" & @CRLF & _ " if (/MSIE (\d+\.\d+);/.test(navigator.userAgent)) {" & @CRLF & _ " var ieversion = new Number(RegExp.$1);" & @CRLF & _ " if (ieversion < 7)" & @CRLF & _ " icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.gif';" & @CRLF & _ " }" & @CRLF & _ " var locationMarker = new google.maps.Marker({" & @CRLF & _ " position: myLatlng," & @CRLF & _ " map: map," & @CRLF & _ " icon: new google.maps.MarkerImage(icon)," & @CRLF & _ " title: 'Arbour Street'" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " var markerListener = google.maps.event.addListener(locationMarker, 'click', function() {" & @CRLF & _ " window.location.href = 'location-results/item/arbour-street';" & @CRLF & _ " google.maps.event.removeListener(markerListener);" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " markerBounds.extend(myLatlng);" & @CRLF & _ " });" & @CRLF & _ " </script>" & @CRLF & _ " " & @CRLF & _ " <script type="text/javascript">" & @CRLF & _ " $(function() {" & @CRLF & _ " var myLatlng = new google.maps.LatLng(53.719961, -1.538047);" & @CRLF & _ " var icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.png';" & @CRLF & _ " if (/MSIE (\d+\.\d+);/.test(navigator.userAgent)) {" & @CRLF & _ " var ieversion = new Number(RegExp.$1);" & @CRLF & _ " if (ieversion < 7)" & @CRLF & _ " icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.gif';" & @CRLF & _ " }" & @CRLF & _ " var locationMarker = new google.maps.Marker({" & @CRLF & _ " position: myLatlng," & @CRLF & _ " map: map," & @CRLF & _ " icon: new google.maps.MarkerImage(icon)," & @CRLF & _ " title: 'Ardsley House'" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " var markerListener = google.maps.event.addListener(locationMarker, 'click', function() {" & @CRLF & _ " window.location.href = 'location-results/item/ardsley-house';" & @CRLF & _ " google.maps.event.removeListener(markerListener);" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " markerBounds.extend(myLatlng);" & @CRLF & _ " });" & @CRLF & _ " </script>" & @CRLF & _ " " & @CRLF & _ " <script type="text/javascript">" & @CRLF & _ " $(function() {" & @CRLF & _ " var myLatlng = new google.maps.LatLng(52.980968, -0.014397);" & @CRLF & _ " var icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.png';" & @CRLF & _ " if (/MSIE (\d+\.\d+);/.test(navigator.userAgent)) {" & @CRLF & _ " var ieversion = new Number(RegExp.$1);" & @CRLF & _ " if (ieversion < 7)" & @CRLF & _ " icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.gif';" & @CRLF & _ " }" & @CRLF & _ " var locationMarker = new google.maps.Marker({" & @CRLF & _ " position: myLatlng," & @CRLF & _ " map: map," & @CRLF & _ " icon: new google.maps.MarkerImage(icon)," & @CRLF & _ " title: 'Ashridge'" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " var markerListener = google.maps.event.addListener(locationMarker, 'click', function() {" & @CRLF & _ " window.location.href = 'location-results/item/ashridge';" & @CRLF & _ " google.maps.event.removeListener(markerListener);" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " markerBounds.extend(myLatlng);" & @CRLF & _ " });" & @CRLF & _ " </script>" & @CRLF & _ " " & @CRLF & _ " <script type="text/javascript">" & @CRLF & _ " $(function() {" & @CRLF & _ " var myLatlng = new google.maps.LatLng(53.171616, -2.523688);" & @CRLF & _ " var icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.png';" & @CRLF & _ " if (/MSIE (\d+\.\d+);/.test(navigator.userAgent)) {" & @CRLF & _ " var ieversion = new Number(RegExp.$1);" & @CRLF & _ " if (ieversion < 7)" & @CRLF & _ " icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.gif';" & @CRLF & _ " }" & @CRLF & _ " var locationMarker = new google.maps.Marker({" & @CRLF & _ " position: myLatlng," & @CRLF & _ " map: map," & @CRLF & _ " icon: new google.maps.MarkerImage(icon)," & @CRLF & _ " title: 'Bank Hall Farm'" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " var markerListener = google.maps.event.addListener(locationMarker, 'click', function() {" & @CRLF & _ " window.location.href = 'location-results/item/bank-hall-farm';" & @CRLF & _ " google.maps.event.removeListener(markerListener);" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " markerBounds.extend(myLatlng);" & @CRLF & _ " });" & @CRLF & _ " </script>" & @CRLF & _ " " & @CRLF & _ " <script type="text/javascript">" & @CRLF & _ " $(function() {" & @CRLF & _ " var myLatlng = new google.maps.LatLng(53.696999, -2.7416401);" & @CRLF & _ " var icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.png';" & @CRLF & _ " if (/MSIE (\d+\.\d+);/.test(navigator.userAgent)) {" & @CRLF & _ " var ieversion = new Number(RegExp.$1);" & @CRLF & _ " if (ieversion < 7)" & @CRLF & _ " icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.gif';" & @CRLF & _ " }" & @CRLF & _ " var locationMarker = new google.maps.Marker({" & @CRLF & _ " position: myLatlng," & @CRLF & _ " map: map," & @CRLF & _ " icon: new google.maps.MarkerImage(icon)," & @CRLF & _ " title: 'Bannister Farm Cottage'" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " var markerListener = google.maps.event.addListener(locationMarker, 'click', function() {" & @CRLF & _ " window.location.href = 'location-results/item/bannister-farm-cottage';" & @CRLF & _ " google.maps.event.removeListener(markerListener);" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " markerBounds.extend(myLatlng);" & @CRLF & _ " });" & @CRLF & _ " </script>" & @CRLF & _ " " & @CRLF & _ " <script type="text/javascript">" & @CRLF & _ " $(function() {" & @CRLF & _ " var myLatlng = new google.maps.LatLng(50.726223, -1.928968);" & @CRLF & _ " var icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.png';" & @CRLF & _ " if (/MSIE (\d+\.\d+);/.test(navigator.userAgent)) {" & @CRLF & _ " var ieversion = new Number(RegExp.$1);" & @CRLF & _ " if (ieversion < 7)" & @CRLF & _ " icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.gif';" & @CRLF & _ " }" & @CRLF & _ " var locationMarker = new google.maps.Marker({" & @CRLF & _ " position: myLatlng," & @CRLF & _ " map: map," & @CRLF & _ " icon: new google.maps.MarkerImage(icon)," & @CRLF & _ " title: 'Beach House'" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " var markerListener = google.maps.event.addListener(locationMarker, 'click', function() {" & @CRLF & _ " window.location.href = 'location-results/item/beach-house';" & @CRLF & _ " google.maps.event.removeListener(markerListener);" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " markerBounds.extend(myLatlng);" & @CRLF & _ " });" & @CRLF & _ " </script>" & @CRLF & _ " " & @CRLF & _ " <script type="text/javascript">" & @CRLF & _ " $(function() {" & @CRLF & _ " var myLatlng = new google.maps.LatLng(52.552857, 0.092427);" & @CRLF & _ " var icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.png';" & @CRLF & _ " if (/MSIE (\d+\.\d+);/.test(navigator.userAgent)) {" & @CRLF & _ " var ieversion = new Number(RegExp.$1);" & @CRLF & _ " if (ieversion < 7)" & @CRLF & _ " icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.gif';" & @CRLF & _ " }" & @CRLF & _ " var locationMarker = new google.maps.Marker({" & @CRLF & _ " position: myLatlng," & @CRLF & _ " map: map," & @CRLF & _ " icon: new google.maps.MarkerImage(icon)," & @CRLF & _ " title: 'Belmont Road'" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " var markerListener = google.maps.event.addListener(locationMarker, 'click', function() {" & @CRLF & _ " window.location.href = 'location-results/item/belmont-road';" & @CRLF & _ " google.maps.event.removeListener(markerListener);" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " markerBounds.extend(myLatlng);" & @CRLF & _ " });" & @CRLF & _ " </script>" & @CRLF & _ " " & @CRLF & _ " <script type="text/javascript">" & @CRLF & _ " $(function() {" & @CRLF & _ " var myLatlng = new google.maps.LatLng(51.768318, -2.555483);" & @CRLF & _ " var icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.png';" & @CRLF & _ " if (/MSIE (\d+\.\d+);/.test(navigator.userAgent)) {" & @CRLF & _ " var ieversion = new Number(RegExp.$1);" & @CRLF & _ " if (ieversion < 7)" & @CRLF & _ " icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.gif';" & @CRLF & _ " }" & @CRLF & _ " var locationMarker = new google.maps.Marker({" & @CRLF & _ " position: myLatlng," & @CRLF & _ " map: map," & @CRLF & _ " icon: new google.maps.MarkerImage(icon)," & @CRLF & _ " title: 'Birches Grove'" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " var markerListener = google.maps.event.addListener(locationMarker, 'click', function() {" & @CRLF & _ " window.location.href = 'location-results/item/birches-grove';" & @CRLF & _ " google.maps.event.removeListener(markerListener);" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " markerBounds.extend(myLatlng);" & @CRLF & _ " });" & @CRLF & _ " </script>" & @CRLF & _ " " & @CRLF & _ " <script type="text/javascript">" & @CRLF & _ " $(function() {" & @CRLF & _ " var myLatlng = new google.maps.LatLng(50.853027, 0.54821479);" & @CRLF & _ " var icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.png';" & @CRLF & _ " if (/MSIE (\d+\.\d+);/.test(navigator.userAgent)) {" & @CRLF & _ " var ieversion = new Number(RegExp.$1);" & @CRLF & _ " if (ieversion < 7)" & @CRLF & _ " icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.gif';" & @CRLF & _ " }" & @CRLF & _ " var locationMarker = new google.maps.Marker({" & @CRLF & _ " position: myLatlng," & @CRLF & _ " map: map," & @CRLF & _ " icon: new google.maps.MarkerImage(icon)," & @CRLF & _ " title: 'Bishops Corner'" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " var markerListener = google.maps.event.addListener(locationMarker, 'click', function() {" & @CRLF & _ " window.location.href = 'location-results/item/bishops-corner';" & @CRLF & _ " google.maps.event.removeListener(markerListener);" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " markerBounds.extend(myLatlng);" & @CRLF & _ " });" & @CRLF & _ " </script>" & @CRLF & _ " " & @CRLF & _ " <script type="text/javascript">" & @CRLF & _ " $(function() {" & @CRLF & _ " var myLatlng = new google.maps.LatLng(50.982399, 0.47251177);" & @CRLF & _ " var icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.png';" & @CRLF & _ " if (/MSIE (\d+\.\d+);/.test(navigator.userAgent)) {" & @CRLF & _ " var ieversion = new Number(RegExp.$1);" & @CRLF & _ " if (ieversion < 7)" & @CRLF & _ " icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.gif';" & @CRLF & _ " }" & @CRLF & _ " var locationMarker = new google.maps.Marker({" & @CRLF & _ " position: myLatlng," & @CRLF & _ " map: map," & @CRLF & _ " icon: new google.maps.MarkerImage(icon)," & @CRLF & _ " title: 'Bishops Croft'" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " var markerListener = google.maps.event.addListener(locationMarker, 'click', function() {" & @CRLF & _ " window.location.href = 'location-results/item/bishops-croft';" & @CRLF & _ " google.maps.event.removeListener(markerListener);" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " markerBounds.extend(myLatlng);" & @CRLF & _ " });" & @CRLF & _ " </script>" & @CRLF & _ " " & @CRLF & _ " <script type="text/javascript">" & @CRLF & _ " $(function() {" & @CRLF & _ " var myLatlng = new google.maps.LatLng(50.863247, 0.55222559);" & @CRLF & _ " var icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.png';" & @CRLF & _ " if (/MSIE (\d+\.\d+);/.test(navigator.userAgent)) {" & @CRLF & _ " var ieversion = new Number(RegExp.$1);" & @CRLF & _ " if (ieversion < 7)" & @CRLF & _ " icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.gif';" & @CRLF & _ " }" & @CRLF & _ " var locationMarker = new google.maps.Marker({" & @CRLF & _ " position: myLatlng," & @CRLF & _ " map: map," & @CRLF & _ " icon: new google.maps.MarkerImage(icon)," & @CRLF & _ " title: 'Bishops Gate'" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " var markerListener = google.maps.event.addListener(locationMarker, 'click', function() {" & @CRLF & _ " window.location.href = 'location-results/item/bishops-gate';" & @CRLF & _ " google.maps.event.removeListener(markerListener);" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " markerBounds.extend(myLatlng);" & @CRLF & _ " });" & @CRLF & _ " </script>" & @CRLF & _ " " & @CRLF & _ " <script type="text/javascript">" & @CRLF & _ " $(function() {" & @CRLF & _ " var myLatlng = new google.maps.LatLng(50.863247, 0.55222559);" & @CRLF & _ " var icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.png';" & @CRLF & _ " if (/MSIE (\d+\.\d+);/.test(navigator.userAgent)) {" & @CRLF & _ " var ieversion = new Number(RegExp.$1);" & @CRLF & _ " if (ieversion < 7)" & @CRLF & _ " icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.gif';" & @CRLF & _ " }" & @CRLF & _ " var locationMarker = new google.maps.Marker({" & @CRLF & _ " position: myLatlng," & @CRLF & _ " map: map," & @CRLF & _ " icon: new google.maps.MarkerImage(icon)," & @CRLF & _ " title: 'Bishops Lodge'" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " var markerListener = google.maps.event.addListener(locationMarker, 'click', function() {" & @CRLF & _ " window.location.href = 'location-results/item/bishops-lodge';" & @CRLF & _ " google.maps.event.removeListener(markerListener);" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " markerBounds.extend(myLatlng);" & @CRLF & _ " });" & @CRLF & _ " </script>" & @CRLF & _ " " & @CRLF & _ " <script type="text/javascript">" & @CRLF & _ " $(function() {" & @CRLF & _ " var myLatlng = new google.maps.LatLng(50.861309, 0.55899799);" & @CRLF & _ " var icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.png';" & @CRLF & _ " if (/MSIE (\d+\.\d+);/.test(navigator.userAgent)) {" & @CRLF & _ " var ieversion = new Number(RegExp.$1);" & @CRLF & _ " if (ieversion < 7)" & @CRLF & _ " icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.gif';" & @CRLF & _ " }" & @CRLF & _ " var locationMarker = new google.maps.Marker({" & @CRLF & _ " position: myLatlng," & @CRLF & _ " map: map," & @CRLF & _ " icon: new google.maps.MarkerImage(icon)," & @CRLF & _ " title: 'Bishops Way'" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " var markerListener = google.maps.event.addListener(locationMarker, 'click', function() {" & @CRLF & _ " window.location.href = 'location-results/item/bishops-way';" & @CRLF & _ " google.maps.event.removeListener(markerListener);" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " markerBounds.extend(myLatlng);" & @CRLF & _ " });" & @CRLF & _ " </script>" & @CRLF & _ " " & @CRLF & _ " <script type="text/javascript">" & @CRLF & _ " $(function() {" & @CRLF & _ " var myLatlng = new google.maps.LatLng(53.080943, -0.271889);" & @CRLF & _ " var icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.png';" & @CRLF & _ " if (/MSIE (\d+\.\d+);/.test(navigator.userAgent)) {" & @CRLF & _ " var ieversion = new Number(RegExp.$1);" & @CRLF & _ " if (ieversion < 7)" & @CRLF & _ " icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.gif';" & @CRLF & _ " }" & @CRLF & _ " var locationMarker = new google.maps.Marker({" & @CRLF & _ " position: myLatlng," & @CRLF & _ " map: map," & @CRLF & _ " icon: new google.maps.MarkerImage(icon)," & @CRLF & _ " title: 'Blair House'" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " var markerListener = google.maps.event.addListener(locationMarker, 'click', function() {" & @CRLF & _ " window.location.href = 'location-results/item/blair-house';" & @CRLF & _ " google.maps.event.removeListener(markerListener);" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " markerBounds.extend(myLatlng);" & @CRLF & _ " });" & @CRLF & _ " </script>" & @CRLF & _ " " & @CRLF & _ " <script type="text/javascript">" & @CRLF & _ " $(function() {" & @CRLF & _ " var myLatlng = new google.maps.LatLng(53.446701, -0.710573);" & @CRLF & _ " var icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.png';" & @CRLF & _ " if (/MSIE (\d+\.\d+);/.test(navigator.userAgent)) {" & @CRLF & _ " var ieversion = new Number(RegExp.$1);" & @CRLF & _ " if (ieversion < 7)" & @CRLF & _ " icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.gif';" & @CRLF & _ " }" & @CRLF & _ " var locationMarker = new google.maps.Marker({" & @CRLF & _ " position: myLatlng," & @CRLF & _ " map: map," & @CRLF & _ " icon: new google.maps.MarkerImage(icon)," & @CRLF & _ " title: 'Blyton Court'" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " var markerListener = google.maps.event.addListener(locationMarker, 'click', function() {" & @CRLF & _ " window.location.href = 'location-results/item/blyton-court';" & @CRLF & _ " google.maps.event.removeListener(markerListener);" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " markerBounds.extend(myLatlng);" & @CRLF & _ " });" & @CRLF & _ " </script>" & @CRLF & _ " " & @CRLF & _ " <script type="text/javascript">" & @CRLF & _ " $(function() {" & @CRLF & _ " var myLatlng = new google.maps.LatLng(55.149376, -6.63815);" & @CRLF & _ " var icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.png';" & @CRLF & _ " if (/MSIE (\d+\.\d+);/.test(navigator.userAgent)) {" & @CRLF & _ " var ieversion = new Number(RegExp.$1);" & @CRLF & _ " if (ieversion < 7)" & @CRLF & _ " icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.gif';" & @CRLF & _ " }" & @CRLF & _ " var locationMarker = new google.maps.Marker({" & @CRLF & _ " position: myLatlng," & @CRLF & _ " map: map," & @CRLF & _ " icon: new google.maps.MarkerImage(icon)," & @CRLF & _ " title: 'Bohill Bungalows Care Home'" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " var markerListener = google.maps.event.addListener(locationMarker, 'click', function() {" & @CRLF & _ " window.location.href = 'location-results/item/bohill-bungalows-care-home';" & @CRLF & _ " google.maps.event.removeListener(markerListener);" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " markerBounds.extend(myLatlng);" & @CRLF & _ " });" & @CRLF & _ " </script>" & @CRLF & _ " " & @CRLF & _ " <script type="text/javascript">" & @CRLF & _ " $(function() {" & @CRLF & _ " var myLatlng = new google.maps.LatLng(53.377433, -1.413582);" & @CRLF & _ " var icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.png';" & @CRLF & _ " if (/MSIE (\d+\.\d+);/.test(navigator.userAgent)) {" & @CRLF & _ " var ieversion = new Number(RegExp.$1);" & @CRLF & _ " if (ieversion < 7)" & @CRLF & _ " icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.gif';" & @CRLF & _ " }" & @CRLF & _ " var locationMarker = new google.maps.Marker({" & @CRLF & _ " position: myLatlng," & @CRLF & _ " map: map," & @CRLF & _ " icon: new google.maps.MarkerImage(icon)," & @CRLF & _ " title: 'Bowden House'" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " var markerListener = google.maps.event.addListener(locationMarker, 'click', function() {" & @CRLF & _ " window.location.href = 'location-results/item/bowden-house';" & @CRLF & _ " google.maps.event.removeListener(markerListener);" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " markerBounds.extend(myLatlng);" & @CRLF & _ " });" & @CRLF & _ " </script>" & @CRLF & _ " " & @CRLF & _ " <script type="text/javascript">" & @CRLF & _ " $(function() {" & @CRLF & _ " var myLatlng = new google.maps.LatLng(52.525857, -2.202079);" & @CRLF & _ " var icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.png';" & @CRLF & _ " if (/MSIE (\d+\.\d+);/.test(navigator.userAgent)) {" & @CRLF & _ " var ieversion = new Number(RegExp.$1);" & @CRLF & _ " if (ieversion < 7)" & @CRLF & _ " icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.gif';" & @CRLF & _ " }" & @CRLF & _ " var locationMarker = new google.maps.Marker({" & @CRLF & _ " position: myLatlng," & @CRLF & _ " map: map," & @CRLF & _ " icon: new google.maps.MarkerImage(icon)," & @CRLF & _ " title: 'Brickbridge House'" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " var markerListener = google.maps.event.addListener(locationMarker, 'click', function() {" & @CRLF & _ " window.location.href = 'location-results/item/brickbridge-house';" & @CRLF & _ " google.maps.event.removeListener(markerListener);" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " markerBounds.extend(myLatlng);" & @CRLF & _ " });" & @CRLF & _ " </script>" & @CRLF & _ " " & @CRLF & _ " <script type="text/javascript">" & @CRLF & _ " $(function() {" & @CRLF & _ " var myLatlng = new google.maps.LatLng(52.187844, -2.239449);" & @CRLF & _ " var icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.png';" & @CRLF & _ " if (/MSIE (\d+\.\d+);/.test(navigator.userAgent)) {" & @CRLF & _ " var ieversion = new Number(RegExp.$1);" & @CRLF & _ " if (ieversion < 7)" & @CRLF & _ " icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.gif';" & @CRLF & _ " }" & @CRLF & _ " var locationMarker = new google.maps.Marker({" & @CRLF & _ " position: myLatlng," & @CRLF & _ " map: map," & @CRLF & _ " icon: new google.maps.MarkerImage(icon)," & @CRLF & _ " title: 'Bromyard Road'" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " var markerListener = google.maps.event.addListener(locationMarker, 'click', function() {" & @CRLF & _ " window.location.href = 'location-results/item/bromyard-road';" & @CRLF & _ " google.maps.event.removeListener(markerListener);" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " markerBounds.extend(myLatlng);" & @CRLF & _ " });" & @CRLF & _ " </script>" & @CRLF & _ " " & @CRLF & _ " <script type="text/javascript">" & @CRLF & _ " $(function() {" & @CRLF & _ " var myLatlng = new google.maps.LatLng(50.910009, -1.426123);" & @CRLF & _ " var icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.png';" & @CRLF & _ " if (/MSIE (\d+\.\d+);/.test(navigator.userAgent)) {" & @CRLF & _ " var ieversion = new Number(RegExp.$1);" & @CRLF & _ " if (ieversion < 7)" & @CRLF & _ " icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.gif';" & @CRLF & _ " }" & @CRLF & _ " var locationMarker = new google.maps.Marker({" & @CRLF & _ " position: myLatlng," & @CRLF & _ " map: map," & @CRLF & _ " icon: new google.maps.MarkerImage(icon)," & @CRLF & _ " title: 'Brooke House'" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " var markerListener = google.maps.event.addListener(locationMarker, 'click', function() {" & @CRLF & _ " window.location.href = 'location-results/item/brooke-house';" & @CRLF & _ " google.maps.event.removeListener(markerListener);" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " markerBounds.extend(myLatlng);" & @CRLF & _ " });" & @CRLF & _ " </script>" & @CRLF & _ " " & @CRLF & _ " <script type="text/javascript">" & @CRLF & _ " $(function() {" & @CRLF & _ " var myLatlng = new google.maps.LatLng(51.585193, -3.009673);" & @CRLF & _ " var icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.png';" & @CRLF & _ " if (/MSIE (\d+\.\d+);/.test(navigator.userAgent)) {" & @CRLF & _ " var ieversion = new Number(RegExp.$1);" & @CRLF & _ " if (ieversion < 7)" & @CRLF & _ " icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.gif';" & @CRLF & _ " }" & @CRLF & _ " var locationMarker = new google.maps.Marker({" & @CRLF & _ " position: myLatlng," & @CRLF & _ " map: map," & @CRLF & _ " icon: new google.maps.MarkerImage(icon)," & @CRLF & _ " title: 'Bryngwyn Road'" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " var markerListener = google.maps.event.addListener(locationMarker, 'click', function() {" & @CRLF & _ " window.location.href = 'location-results/item/bryngwyn-road';" & @CRLF & _ " google.maps.event.removeListener(markerListener);" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " markerBounds.extend(myLatlng);" & @CRLF & _ " });" & @CRLF & _ " </script>" & @CRLF & _ " " & @CRLF & _ " <script type="text/javascript">" & @CRLF & _ " $(function() {" & @CRLF & _ " var myLatlng = new google.maps.LatLng(51.543082, -3.372987);" & @CRLF & _ " var icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.png';" & @CRLF & _ " if (/MSIE (\d+\.\d+);/.test(navigator.userAgent)) {" & @CRLF & _ " var ieversion = new Number(RegExp.$1);" & @CRLF & _ " if (ieversion < 7)" & @CRLF & _ " icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.gif';" & @CRLF & _ " }" & @CRLF & _ " var locationMarker = new google.maps.Marker({" & @CRLF & _ " position: myLatlng," & @CRLF & _ " map: map," & @CRLF & _ " icon: new google.maps.MarkerImage(icon)," & @CRLF & _ " title: 'Caerlan'" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " var markerListener = google.maps.event.addListener(locationMarker, 'click', function() {" & @CRLF & _ " window.location.href = 'location-results/item/caerlan';" & @CRLF & _ " google.maps.event.removeListener(markerListener);" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " markerBounds.extend(myLatlng);" & @CRLF & _ " });" & @CRLF & _ " </script>" & @CRLF & _ " " & @CRLF & _ " <script type="text/javascript">" & @CRLF & _ " $(function() {" & @CRLF & _ " var myLatlng = new google.maps.LatLng(53.747873, -1.507368);" & @CRLF & _ " var icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.png';" & @CRLF & _ " if (/MSIE (\d+\.\d+);/.test(navigator.userAgent)) {" & @CRLF & _ " var ieversion = new Number(RegExp.$1);" & @CRLF & _ " if (ieversion < 7)" & @CRLF & _ " icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.gif';" & @CRLF & _ " }" & @CRLF & _ " var locationMarker = new google.maps.Marker({" & @CRLF & _ " position: myLatlng," & @CRLF & _ " map: map," & @CRLF & _ " icon: new google.maps.MarkerImage(icon)," & @CRLF & _ " title: 'Carlton House'" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " var markerListener = google.maps.event.addListener(locationMarker, 'click', function() {" & @CRLF & _ " window.location.href = 'location-results/item/carlton-house';" & @CRLF & _ " google.maps.event.removeListener(markerListener);" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " markerBounds.extend(myLatlng);" & @CRLF & _ " });" & @CRLF & _ " </script>" & @CRLF & _ " " & @CRLF & _ " <script type="text/javascript">" & @CRLF & _ " $(function() {" & @CRLF & _ " var myLatlng = new google.maps.LatLng(52.745348, -1.247877);" & @CRLF & _ " var icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.png';" & @CRLF & _ " if (/MSIE (\d+\.\d+);/.test(navigator.userAgent)) {" & @CRLF & _ " var ieversion = new Number(RegExp.$1);" & @CRLF & _ " if (ieversion < 7)" & @CRLF & _ " icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.gif';" & @CRLF & _ " }" & @CRLF & _ " var locationMarker = new google.maps.Marker({" & @CRLF & _ " position: myLatlng," & @CRLF & _ " map: map," & @CRLF & _ " icon: new google.maps.MarkerImage(icon)," & @CRLF & _ " title: 'Charnwood Lodge'" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " var markerListener = google.maps.event.addListener(locationMarker, 'click', function() {" & @CRLF & _ " window.location.href = 'location-results/item/charnwood-lodge';" & @CRLF & _ " google.maps.event.removeListener(markerListener);" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " markerBounds.extend(myLatlng);" & @CRLF & _ " });" & @CRLF & _ " </script>" & @CRLF & _ " " & @CRLF & _ " <script type="text/javascript">" & @CRLF & _ " $(function() {" & @CRLF & _ " var myLatlng = new google.maps.LatLng(51.355066, -2.970296);" & @CRLF & _ " var icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.png';" & @CRLF & _ " if (/MSIE (\d+\.\d+);/.test(navigator.userAgent)) {" & @CRLF & _ " var ieversion = new Number(RegExp.$1);" & @CRLF & _ " if (ieversion < 7)" & @CRLF & _ " icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.gif';" & @CRLF & _ " }" & @CRLF & _ " var locationMarker = new google.maps.Marker({" & @CRLF & _ " position: myLatlng," & @CRLF & _ " map: map," & @CRLF & _ " icon: new google.maps.MarkerImage(icon)," & @CRLF & _ " title: 'Cherrywood House'" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " var markerListener = google.maps.event.addListener(locationMarker, 'click', function() {" & @CRLF & _ " window.location.href = 'location-results/item/cherrywood-house';" & @CRLF & _ " google.maps.event.removeListener(markerListener);" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " markerBounds.extend(myLatlng);" & @CRLF & _ " });" & @CRLF & _ " </script>" & @CRLF & _ " " & @CRLF & _ " <script type="text/javascript">" & @CRLF & _ " $(function() {" & @CRLF & _ " var myLatlng = new google.maps.LatLng(53.433533, -1.394147);" & @CRLF & _ " var icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.png';" & @CRLF & _ " if (/MSIE (\d+\.\d+);/.test(navigator.userAgent)) {" & @CRLF & _ " var ieversion = new Number(RegExp.$1);" & @CRLF & _ " if (ieversion < 7)" & @CRLF & _ " icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.gif';" & @CRLF & _ " }" & @CRLF & _ " var locationMarker = new google.maps.Marker({" & @CRLF & _ " position: myLatlng," & @CRLF & _ " map: map," & @CRLF & _ " icon: new google.maps.MarkerImage(icon)," & @CRLF & _ " title: 'Church View'" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " var markerListener = google.maps.event.addListener(locationMarker, 'click', function() {" & @CRLF & _ " window.location.href = 'location-results/item/church-view';" & @CRLF & _ " google.maps.event.removeListener(markerListener);" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " markerBounds.extend(myLatlng);" & @CRLF & _ " });" & @CRLF & _ " </script>" & @CRLF & _ " " & @CRLF & _ " <script type="text/javascript">" & @CRLF & _ " $(function() {" & @CRLF & _ " var myLatlng = new google.maps.LatLng(52.964668, -2.192598);" & @CRLF & _ " var icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.png';" & @CRLF & _ " if (/MSIE (\d+\.\d+);/.test(navigator.userAgent)) {" & @CRLF & _ " var ieversion = new Number(RegExp.$1);" & @CRLF & _ " if (ieversion < 7)" & @CRLF & _ " icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.gif';" & @CRLF & _ " }" & @CRLF & _ " var locationMarker = new google.maps.Marker({" & @CRLF & _ " position: myLatlng," & @CRLF & _ " map: map," & @CRLF & _ " icon: new google.maps.MarkerImage(icon)," & @CRLF & _ " title: 'Collinson Court'" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " var markerListener = google.maps.event.addListener(locationMarker, 'click', function() {" & @CRLF & _ " window.location.href = 'location-results/item/collinson-court';" & @CRLF & _ " google.maps.event.removeListener(markerListener);" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " markerBounds.extend(myLatlng);" & @CRLF & _ " });" & @CRLF & _ " </script>" & @CRLF & _ " " & @CRLF & _ " <script type="text/javascript">" & @CRLF & _ " $(function() {" & @CRLF & _ " var myLatlng = new google.maps.LatLng(52.179209, 0.993563);" & @CRLF & _ " var icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.png';" & @CRLF & _ " if (/MSIE (\d+\.\d+);/.test(navigator.userAgent)) {" & @CRLF & _ " var ieversion = new Number(RegExp.$1);" & @CRLF & _ " if (ieversion < 7)" & @CRLF & _ " icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.gif';" & @CRLF & _ " }" & @CRLF & _ " var locationMarker = new google.maps.Marker({" & @CRLF & _ " position: myLatlng," & @CRLF & _ " map: map," & @CRLF & _ " icon: new google.maps.MarkerImage(icon)," & @CRLF & _ " title: 'Combs Court'" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " var markerListener = google.maps.event.addListener(locationMarker, 'click', function() {" & @CRLF & _ " window.location.href = 'location-results/item/combs-court';" & @CRLF & _ " google.maps.event.removeListener(markerListener);" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " markerBounds.extend(myLatlng);" & @CRLF & _ " });" & @CRLF & _ " </script>" & @CRLF & _ " " & @CRLF & _ " <script type="text/javascript">" & @CRLF & _ " $(function() {" & @CRLF & _ " var myLatlng = new google.maps.LatLng(52.53041, -0.209224);" & @CRLF & _ " var icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.png';" & @CRLF & _ " if (/MSIE (\d+\.\d+);/.test(navigator.userAgent)) {" & @CRLF & _ " var ieversion = new Number(RegExp.$1);" & @CRLF & _ " if (ieversion < 7)" & @CRLF & _ " icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.gif';" & @CRLF & _ " }" & @CRLF & _ " var locationMarker = new google.maps.Marker({" & @CRLF & _ " position: myLatlng," & @CRLF & _ " map: map," & @CRLF & _ " icon: new google.maps.MarkerImage(icon)," & @CRLF & _ " title: 'Conquest House'" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " var markerListener = google.maps.event.addListener(locationMarker, 'click', function() {" & @CRLF & _ " window.location.href = 'location-results/item/conquest-house';" & @CRLF & _ " google.maps.event.removeListener(markerListener);" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " markerBounds.extend(myLatlng);" & @CRLF & _ " });" & @CRLF & _ " </script>" & @CRLF & _ " " & @CRLF & _ " <script type="text/javascript">" & @CRLF & _ " $(function() {" & @CRLF & _ " var myLatlng = new google.maps.LatLng(52.564701, 0.090792);" & @CRLF & _ " var icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.png';" & @CRLF & _ " if (/MSIE (\d+\.\d+);/.test(navigator.userAgent)) {" & @CRLF & _ " var ieversion = new Number(RegExp.$1);" & @CRLF & _ " if (ieversion < 7)" & @CRLF & _ " icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.gif';" & @CRLF & _ " }" & @CRLF & _ " var locationMarker = new google.maps.Marker({" & @CRLF & _ " position: myLatlng," & @CRLF & _ " map: map," & @CRLF & _ " icon: new google.maps.MarkerImage(icon)," & @CRLF & _ " title: 'Conquest Lodge'" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " var markerListener = google.maps.event.addListener(locationMarker, 'click', function() {" & @CRLF & _ " window.location.href = 'location-results/item/conquest-lodge';" & @CRLF & _ " google.maps.event.removeListener(markerListener);" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " markerBounds.extend(myLatlng);" & @CRLF & _ " });" & @CRLF & _ " </script>" & @CRLF & _ " " & @CRLF & _ " <script type="text/javascript">" & @CRLF & _ " $(function() {" & @CRLF & _ " var myLatlng = new google.maps.LatLng(50.365774, -4.090425);" & @CRLF & _ " var icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.png';" & @CRLF & _ " if (/MSIE (\d+\.\d+);/.test(navigator.userAgent)) {" & @CRLF & _ " var ieversion = new Number(RegExp.$1);" & @CRLF & _ " if (ieversion < 7)" & @CRLF & _ " icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.gif';" & @CRLF & _ " }" & @CRLF & _ " var locationMarker = new google.maps.Marker({" & @CRLF & _ " position: myLatlng," & @CRLF & _ " map: map," & @CRLF & _ " icon: new google.maps.MarkerImage(icon)," & @CRLF & _ " title: 'Coolhaze'" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " var markerListener = google.maps.event.addListener(locationMarker, 'click', function() {" & @CRLF & _ " window.location.href = 'location-results/item/coolhaze';" & @CRLF & _ " google.maps.event.removeListener(markerListener);" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " markerBounds.extend(myLatlng);" & @CRLF & _ " });" & @CRLF & _ " </script>" & @CRLF & _ " " & @CRLF & _ " <script type="text/javascript">" & @CRLF & _ " $(function() {" & @CRLF & _ " var myLatlng = new google.maps.LatLng(50.740205, -1.914067);" & @CRLF & _ " var icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.png';" & @CRLF & _ " if (/MSIE (\d+\.\d+);/.test(navigator.userAgent)) {" & @CRLF & _ " var ieversion = new Number(RegExp.$1);" & @CRLF & _ " if (ieversion < 7)" & @CRLF & _ " icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.gif';" & @CRLF & _ " }" & @CRLF & _ " var locationMarker = new google.maps.Marker({" & @CRLF & _ " position: myLatlng," & @CRLF & _ " map: map," & @CRLF & _ " icon: new google.maps.MarkerImage(icon)," & @CRLF & _ " title: 'Coral House'" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " var markerListener = google.maps.event.addListener(locationMarker, 'click', function() {" & @CRLF & _ " window.location.href = 'location-results/item/coral-house';" & @CRLF & _ " google.maps.event.removeListener(markerListener);" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " markerBounds.extend(myLatlng);" & @CRLF & _ " });" & @CRLF & _ " </script>" & @CRLF & _ " " & @CRLF & _ " <script type="text/javascript">" & @CRLF & _ " $(function() {" & @CRLF & _ " var myLatlng = new google.maps.LatLng(50.98993, 0.971154);" & @CRLF & _ " var icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.png';" & @CRLF & _ " if (/MSIE (\d+\.\d+);/.test(navigator.userAgent)) {" & @CRLF & _ " var ieversion = new Number(RegExp.$1);" & @CRLF & _ " if (ieversion < 7)" & @CRLF & _ " icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.gif';" & @CRLF & _ " }" & @CRLF & _ " var locationMarker = new google.maps.Marker({" & @CRLF & _ " position: myLatlng," & @CRLF & _ " map: map," & @CRLF & _ " icon: new google.maps.MarkerImage(icon)," & @CRLF & _ " title: 'Cotswold Lodge'" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " var markerListener = google.maps.event.addListener(locationMarker, 'click', function() {" & @CRLF & _ " window.location.href = 'location-results/item/cotswold-lodge';" & @CRLF & _ " google.maps.event.removeListener(markerListener);" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " markerBounds.extend(myLatlng);" & @CRLF & _ " });" & @CRLF & _ " </script>" & @CRLF & _ " " & @CRLF & _ " <script type="text/javascript">" & @CRLF & _ " $(function() {" & @CRLF & _ " var myLatlng = new google.maps.LatLng(53.73154, -1.529401);" & @CRLF & _ " var icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.png';" & @CRLF & _ " if (/MSIE (\d+\.\d+);/.test(navigator.userAgent)) {" & @CRLF & _ " var ieversion = new Number(RegExp.$1);" & @CRLF & _ " if (ieversion < 7)" & @CRLF & _ " icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.gif';" & @CRLF & _ " }" & @CRLF & _ " var locationMarker = new google.maps.Marker({" & @CRLF & _ " position: myLatlng," & @CRLF & _ " map: map," & @CRLF & _ " icon: new google.maps.MarkerImage(icon)," & @CRLF & _ " title: 'Daisy Vale House'" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " var markerListener = google.maps.event.addListener(locationMarker, 'click', function() {" & @CRLF & _ " window.location.href = 'location-results/item/daisy-vale';" & @CRLF & _ " google.maps.event.removeListener(markerListener);" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " markerBounds.extend(myLatlng);" & @CRLF & _ " });" & @CRLF & _ " </script>" & @CRLF & _ " " & @CRLF & _ " <script type="text/javascript">" & @CRLF & _ " $(function() {" & @CRLF & _ " var myLatlng = new google.maps.LatLng(51.646065, -0.137006);" & @CRLF & _ " var icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.png';" & @CRLF & _ " if (/MSIE (\d+\.\d+);/.test(navigator.userAgent)) {" & @CRLF & _ " var ieversion = new Number(RegExp.$1);" & @CRLF & _ " if (ieversion < 7)" & @CRLF & _ " icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.gif';" & @CRLF & _ " }" & @CRLF & _ " var locationMarker = new google.maps.Marker({" & @CRLF & _ " position: myLatlng," & @CRLF & _ " map: map," & @CRLF & _ " icon: new google.maps.MarkerImage(icon)," & @CRLF & _ " title: 'Devon House'" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " var markerListener = google.maps.event.addListener(locationMarker, 'click', function() {" & @CRLF & _ " window.location.href = 'location-results/item/devon-house';" & @CRLF & _ " google.maps.event.removeListener(markerListener);" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " markerBounds.extend(myLatlng);" & @CRLF & _ " });" & @CRLF & _ " </script>" & @CRLF & _ " " & @CRLF & _ " <script type="text/javascript">" & @CRLF & _ " $(function() {" & @CRLF & _ " var myLatlng = new google.maps.LatLng(51.619349, -0.108906);" & @CRLF & _ " var icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.png';" & @CRLF & _ " if (/MSIE (\d+\.\d+);/.test(navigator.userAgent)) {" & @CRLF & _ " var ieversion = new Number(RegExp.$1);" & @CRLF & _ " if (ieversion < 7)" & @CRLF & _ " icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.gif';" & @CRLF & _ " }" & @CRLF & _ " var locationMarker = new google.maps.Marker({" & @CRLF & _ " position: myLatlng," & @CRLF & _ " map: map," & @CRLF & _ " icon: new google.maps.MarkerImage(icon)," & @CRLF & _ " title: 'Devonshire Road'" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " var markerListener = google.maps.event.addListener(locationMarker, 'click', function() {" & @CRLF & _ " window.location.href = 'location-results/item/devonshire-road';" & @CRLF & _ " google.maps.event.removeListener(markerListener);" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " markerBounds.extend(myLatlng);" & @CRLF & _ " });" & @CRLF & _ " </script>" & @CRLF & _ " " & @CRLF & _ " <script type="text/javascript">" & @CRLF & _ " $(function() {" & @CRLF & _ " var myLatlng = new google.maps.LatLng(53.627268, -3.007256);" & @CRLF & _ " var icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.png';" & @CRLF & _ " if (/MSIE (\d+\.\d+);/.test(navigator.userAgent)) {" & @CRLF & _ " var ieversion = new Number(RegExp.$1);" & @CRLF & _ " if (ieversion < 7)" & @CRLF & _ " icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.gif';" & @CRLF & _ " }" & @CRLF & _ " var locationMarker = new google.maps.Marker({" & @CRLF & _ " position: myLatlng," & @CRLF & _ " map: map," & @CRLF & _ " icon: new google.maps.MarkerImage(icon)," & @CRLF & _ " title: 'Dinorwic Road'" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " var markerListener = google.maps.event.addListener(locationMarker, 'click', function() {" & @CRLF & _ " window.location.href = 'location-results/item/dinorwic-road';" & @CRLF & _ " google.maps.event.removeListener(markerListener);" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " markerBounds.extend(myLatlng);" & @CRLF & _ " });" & @CRLF & _ " </script>" & @CRLF & _ " " & @CRLF & _ " <script type="text/javascript">" & @CRLF & _ " $(function() {" & @CRLF & _ " var myLatlng = new google.maps.LatLng(53.732924, -1.526961);" & @CRLF & _ " var icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.png';" & @CRLF & _ " if (/MSIE (\d+\.\d+);/.test(navigator.userAgent)) {" & @CRLF & _ " var ieversion = new Number(RegExp.$1);" & @CRLF & _ " if (ieversion < 7)" & @CRLF & _ " icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.gif';" & @CRLF & _ " }" & @CRLF & _ " var locationMarker = new google.maps.Marker({" & @CRLF & _ " position: myLatlng," & @CRLF & _ " map: map," & @CRLF & _ " icon: new google.maps.MarkerImage(icon)," & @CRLF & _ " title: 'Dolphin Lane'" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " var markerListener = google.maps.event.addListener(locationMarker, 'click', function() {" & @CRLF & _ " window.location.href = 'location-results/item/dolphin-lane';" & @CRLF & _ " google.maps.event.removeListener(markerListener);" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " markerBounds.extend(myLatlng);" & @CRLF & _ " });" & @CRLF & _ " </script>" & @CRLF & _ " " & @CRLF & _ " <script type="text/javascript">" & @CRLF & _ " $(function() {" & @CRLF & _ " var myLatlng = new google.maps.LatLng(56.024962, -3.821204);" & @CRLF & _ " var icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.png';" & @CRLF & _ " if (/MSIE (\d+\.\d+);/.test(navigator.userAgent)) {" & @CRLF & _ " var ieversion = new Number(RegExp.$1);" & @CRLF & _ " if (ieversion < 7)" & @CRLF & _ " icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.gif';" & @CRLF & _ " }" & @CRLF & _ " var locationMarker = new google.maps.Marker({" & @CRLF & _ " position: myLatlng," & @CRLF & _ " map: map," & @CRLF & _ " icon: new google.maps.MarkerImage(icon)," & @CRLF & _ " title: 'Dunvegan'" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " var markerListener = google.maps.event.addListener(locationMarker, 'click', function() {" & @CRLF & _ " window.location.href = 'location-results/item/dunvegan';" & @CRLF & _ " google.maps.event.removeListener(markerListener);" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " markerBounds.extend(myLatlng);" & @CRLF & _ " });" & @CRLF & _ " </script>" & @CRLF & _ " " & @CRLF & _ " <script type="text/javascript">" & @CRLF & _ " $(function() {" & @CRLF & _ " var myLatlng = new google.maps.LatLng(50.554995, -3.488289);" & @CRLF & _ " var icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.png';" & @CRLF & _ " if (/MSIE (\d+\.\d+);/.test(navigator.userAgent)) {" & @CRLF & _ " var ieversion = new Number(RegExp.$1);" & @CRLF & _ " if (ieversion < 7)" & @CRLF & _ " icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.gif';" & @CRLF & _ " }" & @CRLF & _ " var locationMarker = new google.maps.Marker({" & @CRLF & _ " position: myLatlng," & @CRLF & _ " map: map," & @CRLF & _ " icon: new google.maps.MarkerImage(icon)," & @CRLF & _ " title: 'Eastleigh House'" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " var markerListener = google.maps.event.addListener(locationMarker, 'click', function() {" & @CRLF & _ " window.location.href = 'location-results/item/eastleigh-house';" & @CRLF & _ " google.maps.event.removeListener(markerListener);" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " markerBounds.extend(myLatlng);" & @CRLF & _ " });" & @CRLF & _ " </script>" & @CRLF & _ " " & @CRLF & _ " <script type="text/javascript">" & @CRLF & _ " $(function() {" & @CRLF & _ " var myLatlng = new google.maps.LatLng(51.314430, 1.350658);" & @CRLF & _ " var icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.png';" & @CRLF & _ " if (/MSIE (\d+\.\d+);/.test(navigator.userAgent)) {" & @CRLF & _ " var ieversion = new Number(RegExp.$1);" & @CRLF & _ " if (ieversion < 7)" & @CRLF & _ " icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.gif';" & @CRLF & _ " }" & @CRLF & _ " var locationMarker = new google.maps.Marker({" & @CRLF & _ " position: myLatlng," & @CRLF & _ " map: map," & @CRLF & _ " icon: new google.maps.MarkerImage(icon)," & @CRLF & _ " title: 'Ebbsfleet House'" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " var markerListener = google.maps.event.addListener(locationMarker, 'click', function() {" & @CRLF & _ " window.location.href = 'location-results/item/ebbsfleet-house';" & @CRLF & _ " google.maps.event.removeListener(markerListener);" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " markerBounds.extend(myLatlng);" & @CRLF & _ " });" & @CRLF & _ " </script>" & @CRLF & _ " " & @CRLF & _ " <script type="text/javascript">" & @CRLF & _ " $(function() {" & @CRLF & _ " var myLatlng = new google.maps.LatLng(51.031541, 1.003828);" & @CRLF & _ " var icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.png';" & @CRLF & _ " if (/MSIE (\d+\.\d+);/.test(navigator.userAgent)) {" & @CRLF & _ " var ieversion = new Number(RegExp.$1);" & @CRLF & _ " if (ieversion < 7)" & @CRLF & _ " icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.gif';" & @CRLF & _ " }" & @CRLF & _ " var locationMarker = new google.maps.Marker({" & @CRLF & _ " position: myLatlng," & @CRLF & _ " map: map," & @CRLF & _ " icon: new google.maps.MarkerImage(icon)," & @CRLF & _ " title: 'Eden Cottage'" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " var markerListener = google.maps.event.addListener(locationMarker, 'click', function() {" & @CRLF & _ " window.location.href = 'location-results/item/eden-cottage';" & @CRLF & _ " google.maps.event.removeListener(markerListener);" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " markerBounds.extend(myLatlng);" & @CRLF & _ " });" & @CRLF & _ " </script>" & @CRLF & _ " " & @CRLF & _ " <script type="text/javascript">" & @CRLF & _ " $(function() {" & @CRLF & _ " var myLatlng = new google.maps.LatLng(50.838237, 0.469019);" & @CRLF & _ " var icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.png';" & @CRLF & _ " if (/MSIE (\d+\.\d+);/.test(navigator.userAgent)) {" & @CRLF & _ " var ieversion = new Number(RegExp.$1);" & @CRLF & _ " if (ieversion < 7)" & @CRLF & _ " icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.gif';" & @CRLF & _ " }" & @CRLF & _ " var locationMarker = new google.maps.Marker({" & @CRLF & _ " position: myLatlng," & @CRLF & _ " map: map," & @CRLF & _ " icon: new google.maps.MarkerImage(icon)," & @CRLF & _ " title: 'Egerton Road'" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " var markerListener = google.maps.event.addListener(locationMarker, 'click', function() {" & @CRLF & _ " window.location.href = 'location-results/item/egerton-road-neurorehabilitation-centre';" & @CRLF & _ " google.maps.event.removeListener(markerListener);" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " markerBounds.extend(myLatlng);" & @CRLF & _ " });" & @CRLF & _ " </script>" & @CRLF & _ " " & @CRLF & _ " <script type="text/javascript">" & @CRLF & _ " $(function() {" & @CRLF & _ " var myLatlng = new google.maps.LatLng(51.411253, -2.490639);" & @CRLF & _ " var icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.png';" & @CRLF & _ " if (/MSIE (\d+\.\d+);/.test(navigator.userAgent)) {" & @CRLF & _ " var ieversion = new Number(RegExp.$1);" & @CRLF & _ " if (ieversion < 7)" & @CRLF & _ " icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.gif';" & @CRLF & _ " }" & @CRLF & _ " var locationMarker = new google.maps.Marker({" & @CRLF & _ " position: myLatlng," & @CRLF & _ " map: map," & @CRLF & _ " icon: new google.maps.MarkerImage(icon)," & @CRLF & _ " title: 'Elm Tree House'" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " var markerListener = google.maps.event.addListener(locationMarker, 'click', function() {" & @CRLF & _ " window.location.href = 'location-results/item/elm-tree-house';" & @CRLF & _ " google.maps.event.removeListener(markerListener);" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " markerBounds.extend(myLatlng);" & @CRLF & _ " });" & @CRLF & _ " </script>" & @CRLF & _ " " & @CRLF & _ " <script type="text/javascript">" & @CRLF & _ " $(function() {" & @CRLF & _ " var myLatlng = new google.maps.LatLng(54.487857, -0.620403);" & @CRLF & _ " var icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.png';" & @CRLF & _ " if (/MSIE (\d+\.\d+);/.test(navigator.userAgent)) {" & @CRLF & _ " var ieversion = new Number(RegExp.$1);" & @CRLF & _ " if (ieversion < 7)" & @CRLF & _ " icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.gif';" & @CRLF & _ " }" & @CRLF & _ " var locationMarker = new google.maps.Marker({" & @CRLF & _ " position: myLatlng," & @CRLF & _ " map: map," & @CRLF & _ " icon: new google.maps.MarkerImage(icon)," & @CRLF & _ " title: 'Endeavour House'" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " var markerListener = google.maps.event.addListener(locationMarker, 'click', function() {" & @CRLF & _ " window.location.href = 'location-results/item/endeavour-house';" & @CRLF & _ " google.maps.event.removeListener(markerListener);" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " markerBounds.extend(myLatlng);" & @CRLF & _ " });" & @CRLF & _ " </script>" & @CRLF & _ " " & @CRLF & _ " <script type="text/javascript">" & @CRLF & _ " $(function() {" & @CRLF & _ " var myLatlng = new google.maps.LatLng(51.646828, -0.134619);" & @CRLF & _ " var icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.png';" & @CRLF & _ " if (/MSIE (\d+\.\d+);/.test(navigator.userAgent)) {" & @CRLF & _ " var ieversion = new Number(RegExp.$1);" & @CRLF & _ " if (ieversion < 7)" & @CRLF & _ " icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.gif';" & @CRLF & _ " }" & @CRLF & _ " var locationMarker = new google.maps.Marker({" & @CRLF & _ " position: myLatlng," & @CRLF & _ " map: map," & @CRLF & _ " icon: new google.maps.MarkerImage(icon)," & @CRLF & _ " title: 'Enfield Supported Living'" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " var markerListener = google.maps.event.addListener(locationMarker, 'click', function() {" & @CRLF & _ " window.location.href = 'location-results/item/enfield-1-and-enfield-2';" & @CRLF & _ " google.maps.event.removeListener(markerListener);" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " markerBounds.extend(myLatlng);" & @CRLF & _ " });" & @CRLF & _ " </script>" & @CRLF & _ " " & @CRLF & _ " <script type="text/javascript">" & @CRLF & _ " $(function() {" & @CRLF & _ " var myLatlng = new google.maps.LatLng(51.512637, -2.620671);" & @CRLF & _ " var icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.png';" & @CRLF & _ " if (/MSIE (\d+\.\d+);/.test(navigator.userAgent)) {" & @CRLF & _ " var ieversion = new Number(RegExp.$1);" & @CRLF & _ " if (ieversion < 7)" & @CRLF & _ " icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.gif';" & @CRLF & _ " }" & @CRLF & _ " var locationMarker = new google.maps.Marker({" & @CRLF & _ " position: myLatlng," & @CRLF & _ " map: map," & @CRLF & _ " icon: new google.maps.MarkerImage(icon)," & @CRLF & _ " title: 'Evergreen'" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " var markerListener = google.maps.event.addListener(locationMarker, 'click', function() {" & @CRLF & _ " window.location.href = 'location-results/item/evergreen';" & @CRLF & _ " google.maps.event.removeListener(markerListener);" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " markerBounds.extend(myLatlng);" & @CRLF & _ " });" & @CRLF & _ " </script>" & @CRLF & _ " " & @CRLF & _ " <script type="text/javascript">" & @CRLF & _ " $(function() {" & @CRLF & _ " var myLatlng = new google.maps.LatLng(50.533329, -3.609989);" & @CRLF & _ " var icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.png';" & @CRLF & _ " if (/MSIE (\d+\.\d+);/.test(navigator.userAgent)) {" & @CRLF & _ " var ieversion = new Number(RegExp.$1);" & @CRLF & _ " if (ieversion < 7)" & @CRLF & _ " icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.gif';" & @CRLF & _ " }" & @CRLF & _ " var locationMarker = new google.maps.Marker({" & @CRLF & _ " position: myLatlng," & @CRLF & _ " map: map," & @CRLF & _ " icon: new google.maps.MarkerImage(icon)," & @CRLF & _ " title: 'Fair View Lodge'" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " var markerListener = google.maps.event.addListener(locationMarker, 'click', function() {" & @CRLF & _ " window.location.href = 'location-results/item/fair-view-lodge';" & @CRLF & _ " google.maps.event.removeListener(markerListener);" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " markerBounds.extend(myLatlng);" & @CRLF & _ " });" & @CRLF & _ " </script>" & @CRLF & _ " " & @CRLF & _ " <script type="text/javascript">" & @CRLF & _ " $(function() {" & @CRLF & _ " var myLatlng = new google.maps.LatLng(51.081659, 1.157988);" & @CRLF & _ " var icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.png';" & @CRLF & _ " if (/MSIE (\d+\.\d+);/.test(navigator.userAgent)) {" & @CRLF & _ " var ieversion = new Number(RegExp.$1);" & @CRLF & _ " if (ieversion < 7)" & @CRLF & _ " icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.gif';" & @CRLF & _ " }" & @CRLF & _ " var locationMarker = new google.maps.Marker({" & @CRLF & _ " position: myLatlng," & @CRLF & _ " map: map," & @CRLF & _ " icon: new google.maps.MarkerImage(icon)," & @CRLF & _ " title: 'Finn Farm Lodge'" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " var markerListener = google.maps.event.addListener(locationMarker, 'click', function() {" & @CRLF & _ " window.location.href = 'location-results/item/finn-farm-lodge';" & @CRLF & _ " google.maps.event.removeListener(markerListener);" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " markerBounds.extend(myLatlng);" & @CRLF & _ " });" & @CRLF & _ " </script>" & @CRLF & _ " " & @CRLF & _ " <script type="text/javascript">" & @CRLF & _ " $(function() {" & @CRLF & _ " var myLatlng = new google.maps.LatLng(53.455837, -1.346948);" & @CRLF & _ " var icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.png';" & @CRLF & _ " if (/MSIE (\d+\.\d+);/.test(navigator.userAgent)) {" & @CRLF & _ " var ieversion = new Number(RegExp.$1);" & @CRLF & _ " if (ieversion < 7)" & @CRLF & _ " icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.gif';" & @CRLF & _ " }" & @CRLF & _ " var locationMarker = new google.maps.Marker({" & @CRLF & _ " position: myLatlng," & @CRLF & _ " map: map," & @CRLF & _ " icon: new google.maps.MarkerImage(icon)," & @CRLF & _ " title: 'Fitzwilliam Lodge'" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " var markerListener = google.maps.event.addListener(locationMarker, 'click', function() {" & @CRLF & _ " window.location.href = 'location-results/item/fitzwilliam-lodge';" & @CRLF & _ " google.maps.event.removeListener(markerListener);" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " markerBounds.extend(myLatlng);" & @CRLF & _ " });" & @CRLF & _ " </script>" & @CRLF & _ " " & @CRLF & _ " <script type="text/javascript">" & @CRLF & _ " $(function() {" & @CRLF & _ " var myLatlng = new google.maps.LatLng(53.712522, -1.529705);" & @CRLF & _ " var icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.png';" & @CRLF & _ " if (/MSIE (\d+\.\d+);/.test(navigator.userAgent)) {" & @CRLF & _ " var ieversion = new Number(RegExp.$1);" & @CRLF & _ " if (ieversion < 7)" & @CRLF & _ " icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.gif';" & @CRLF & _ " }" & @CRLF & _ " var locationMarker = new google.maps.Marker({" & @CRLF & _ " position: myLatlng," & @CRLF & _ " map: map," & @CRLF & _ " icon: new google.maps.MarkerImage(icon)," & @CRLF & _ " title: 'Gateholme'" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " var markerListener = google.maps.event.addListener(locationMarker, 'click', function() {" & @CRLF & _ " window.location.href = 'location-results/item/gateholme';" & @CRLF & _ " google.maps.event.removeListener(markerListener);" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " markerBounds.extend(myLatlng);" & @CRLF & _ " });" & @CRLF & _ " </script>" & @CRLF & _ " " & @CRLF & _ " <script type="text/javascript">" & @CRLF & _ " $(function() {" & @CRLF & _ " var myLatlng = new google.maps.LatLng(53.597574, -0.22009);" & @CRLF & _ " var icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.png';" & @CRLF & _ " if (/MSIE (\d+\.\d+);/.test(navigator.userAgent)) {" & @CRLF & _ " var ieversion = new Number(RegExp.$1);" & @CRLF & _ " if (ieversion < 7)" & @CRLF & _ " icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.gif';" & @CRLF & _ " }" & @CRLF & _ " var locationMarker = new google.maps.Marker({" & @CRLF & _ " position: myLatlng," & @CRLF & _ " map: map," & @CRLF & _ " icon: new google.maps.MarkerImage(icon)," & @CRLF & _ " title: 'Gatehouse Cottages'" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " var markerListener = google.maps.event.addListener(locationMarker, 'click', function() {" & @CRLF & _ " window.location.href = 'location-results/item/gatehouse-cottages';" & @CRLF & _ " google.maps.event.removeListener(markerListener);" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " markerBounds.extend(myLatlng);" & @CRLF & _ " });" & @CRLF & _ " </script>" & @CRLF & _ " " & @CRLF & _ " <script type="text/javascript">" & @CRLF & _ " $(function() {" & @CRLF & _ " var myLatlng = new google.maps.LatLng(51.888046, -0.424504);" & @CRLF & _ " var icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.png';" & @CRLF & _ " if (/MSIE (\d+\.\d+);/.test(navigator.userAgent)) {" & @CRLF & _ " var ieversion = new Number(RegExp.$1);" & @CRLF & _ " if (ieversion < 7)" & @CRLF & _ " icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.gif';" & @CRLF & _ " }" & @CRLF & _ " var locationMarker = new google.maps.Marker({" & @CRLF & _ " position: myLatlng," & @CRLF & _ " map: map," & @CRLF & _ " icon: new google.maps.MarkerImage(icon)," & @CRLF & _ " title: 'Georgina House'" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " var markerListener = google.maps.event.addListener(locationMarker, 'click', function() {" & @CRLF & _ " window.location.href = 'location-results/item/georgina-house';" & @CRLF & _ " google.maps.event.removeListener(markerListener);" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " markerBounds.extend(myLatlng);" & @CRLF & _ " });" & @CRLF & _ " </script>" & @CRLF & _ " " & @CRLF & _ " <script type="text/javascript">" & @CRLF & _ " $(function() {" & @CRLF & _ " var myLatlng = new google.maps.LatLng(53.494589, -0.314918);" & @CRLF & _ " var icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.png';" & @CRLF & _ " if (/MSIE (\d+\.\d+);/.test(navigator.userAgent)) {" & @CRLF & _ " var ieversion = new Number(RegExp.$1);" & @CRLF & _ " if (ieversion < 7)" & @CRLF & _ " icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.gif';" & @CRLF & _ " }" & @CRLF & _ " var locationMarker = new google.maps.Marker({" & @CRLF & _ " position: myLatlng," & @CRLF & _ " map: map," & @CRLF & _ " icon: new google.maps.MarkerImage(icon)," & @CRLF & _ " title: 'Glebe House'" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " var markerListener = google.maps.event.addListener(locationMarker, 'click', function() {" & @CRLF & _ " window.location.href = 'location-results/item/glebe-house';" & @CRLF & _ " google.maps.event.removeListener(markerListener);" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " markerBounds.extend(myLatlng);" & @CRLF & _ " });" & @CRLF & _ " </script>" & @CRLF & _ " " & @CRLF & _ " <script type="text/javascript">" & @CRLF & _ " $(function() {" & @CRLF & _ " var myLatlng = new google.maps.LatLng(52.661695, -1.1403);" & @CRLF & _ " var icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.png';" & @CRLF & _ " if (/MSIE (\d+\.\d+);/.test(navigator.userAgent)) {" & @CRLF & _ " var ieversion = new Number(RegExp.$1);" & @CRLF & _ " if (ieversion < 7)" & @CRLF & _ " icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.gif';" & @CRLF & _ " }" & @CRLF & _ " var locationMarker = new google.maps.Marker({" & @CRLF & _ " position: myLatlng," & @CRLF & _ " map: map," & @CRLF & _ " icon: new google.maps.MarkerImage(icon)," & @CRLF & _ " title: 'Halifax Drive'" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " var markerListener = google.maps.event.addListener(locationMarker, 'click', function() {" & @CRLF & _ " window.location.href = 'location-results/item/halifax-drive';" & @CRLF & _ " google.maps.event.removeListener(markerListener);" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " markerBounds.extend(myLatlng);" & @CRLF & _ " });" & @CRLF & _ " </script>" & @CRLF & _ " " & @CRLF & _ " <script type="text/javascript">" & @CRLF & _ " $(function() {" & @CRLF & _ " var myLatlng = new google.maps.LatLng(52.153533, -2.320326);" & @CRLF & _ " var icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.png';" & @CRLF & _ " if (/MSIE (\d+\.\d+);/.test(navigator.userAgent)) {" & @CRLF & _ " var ieversion = new Number(RegExp.$1);" & @CRLF & _ " if (ieversion < 7)" & @CRLF & _ " icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.gif';" & @CRLF & _ " }" & @CRLF & _ " var locationMarker = new google.maps.Marker({" & @CRLF & _ " position: myLatlng," & @CRLF & _ " map: map," & @CRLF & _ " icon: new google.maps.MarkerImage(icon)," & @CRLF & _ " title: 'Hamilton House'" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " var markerListener = google.maps.event.addListener(locationMarker, 'click', function() {" & @CRLF & _ " window.location.href = 'location-results/item/hamilton-house';" & @CRLF & _ " google.maps.event.removeListener(markerListener);" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " markerBounds.extend(myLatlng);" & @CRLF & _ " });" & @CRLF & _ " </script>" & @CRLF & _ " " & @CRLF & _ " <script type="text/javascript">" & @CRLF & _ " $(function() {" & @CRLF & _ " var myLatlng = new google.maps.LatLng(50.981921, 0.306447);" & @CRLF & _ " var icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.png';" & @CRLF & _ " if (/MSIE (\d+\.\d+);/.test(navigator.userAgent)) {" & @CRLF & _ " var ieversion = new Number(RegExp.$1);" & @CRLF & _ " if (ieversion < 7)" & @CRLF & _ " icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.gif';" & @CRLF & _ " }" & @CRLF & _ " var locationMarker = new google.maps.Marker({" & @CRLF & _ " position: myLatlng," & @CRLF & _ " map: map," & @CRLF & _ " icon: new google.maps.MarkerImage(icon)," & @CRLF & _ " title: 'Heathfield Neuro Disability Service'" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " var markerListener = google.maps.event.addListener(locationMarker, 'click', function() {" & @CRLF & _ " window.location.href = 'location-results/item/heathfield-neuro-disability-service';" & @CRLF & _ " google.maps.event.removeListener(markerListener);" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " markerBounds.extend(myLatlng);" & @CRLF & _ " });" & @CRLF & _ " </script>" & @CRLF & _ " " & @CRLF & _ " <script type="text/javascript">" & @CRLF & _ " $(function() {" & @CRLF & _ " var myLatlng = new google.maps.LatLng(51.866467, -2.21909);" & @CRLF & _ " var icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.png';" & @CRLF & _ " if (/MSIE (\d+\.\d+);/.test(navigator.userAgent)) {" & @CRLF & _ " var ieversion = new Number(RegExp.$1);" & @CRLF & _ " if (ieversion < 7)" & @CRLF & _ " icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.gif';" & @CRLF & _ " }" & @CRLF & _ " var locationMarker = new google.maps.Marker({" & @CRLF & _ " position: myLatlng," & @CRLF & _ " map: map," & @CRLF & _ " icon: new google.maps.MarkerImage(icon)," & @CRLF & _ " title: 'Heighton House'" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " var markerListener = google.maps.event.addListener(locationMarker, 'click', function() {" & @CRLF & _ " window.location.href = 'location-results/item/heighton-house';" & @CRLF & _ " google.maps.event.removeListener(markerListener);" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " markerBounds.extend(myLatlng);" & @CRLF & _ " });" & @CRLF & _ " </script>" & @CRLF & _ " " & @CRLF & _ " <script type="text/javascript">" & @CRLF & _ " $(function() {" & @CRLF & _ " var myLatlng = new google.maps.LatLng(52.989373, -2.16068);" & @CRLF & _ " var icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.png';" & @CRLF & _ " if (/MSIE (\d+\.\d+);/.test(navigator.userAgent)) {" & @CRLF & _ " var ieversion = new Number(RegExp.$1);" & @CRLF & _ " if (ieversion < 7)" & @CRLF & _ " icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.gif';" & @CRLF & _ " }" & @CRLF & _ " var locationMarker = new google.maps.Marker({" & @CRLF & _ " position: myLatlng," & @CRLF & _ " map: map," & @CRLF & _ " icon: new google.maps.MarkerImage(icon)," & @CRLF & _ " title: 'High Cross House'" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " var markerListener = google.maps.event.addListener(locationMarker, 'click', function() {" & @CRLF & _ " window.location.href = 'location-results/item/high-cross-house';" & @CRLF & _ " google.maps.event.removeListener(markerListener);" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " markerBounds.extend(myLatlng);" & @CRLF & _ " });" & @CRLF & _ " </script>" & @CRLF & _ " " & @CRLF & _ " <script type="text/javascript">" & @CRLF & _ " $(function() {" & @CRLF & _ " var myLatlng = new google.maps.LatLng(51.802779, -2.508222);" & @CRLF & _ " var icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.png';" & @CRLF & _ " if (/MSIE (\d+\.\d+);/.test(navigator.userAgent)) {" & @CRLF & _ " var ieversion = new Number(RegExp.$1);" & @CRLF & _ " if (ieversion < 7)" & @CRLF & _ " icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.gif';" & @CRLF & _ " }" & @CRLF & _ " var locationMarker = new google.maps.Marker({" & @CRLF & _ " position: myLatlng," & @CRLF & _ " map: map," & @CRLF & _ " icon: new google.maps.MarkerImage(icon)," & @CRLF & _ " title: 'Hobbits Holt'" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " var markerListener = google.maps.event.addListener(locationMarker, 'click', function() {" & @CRLF & _ " window.location.href = 'location-results/item/hobbits-holt';" & @CRLF & _ " google.maps.event.removeListener(markerListener);" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " markerBounds.extend(myLatlng);" & @CRLF & _ " });" & @CRLF & _ " </script>" & @CRLF & _ " " & @CRLF & _ " <script type="text/javascript">" & @CRLF & _ " $(function() {" & @CRLF & _ " var myLatlng = new google.maps.LatLng(50.944191, 0.927416);" & @CRLF & _ " var icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.png';" & @CRLF & _ " if (/MSIE (\d+\.\d+);/.test(navigator.userAgent)) {" & @CRLF & _ " var ieversion = new Number(RegExp.$1);" & @CRLF & _ " if (ieversion < 7)" & @CRLF & _ " icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.gif';" & @CRLF & _ " }" & @CRLF & _ " var locationMarker = new google.maps.Marker({" & @CRLF & _ " position: myLatlng," & @CRLF & _ " map: map," & @CRLF & _ " icon: new google.maps.MarkerImage(icon)," & @CRLF & _ " title: 'Homeleigh Farm'" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " var markerListener = google.maps.event.addListener(locationMarker, 'click', function() {" & @CRLF & _ " window.location.href = 'location-results/item/homeleigh-farm';" & @CRLF & _ " google.maps.event.removeListener(markerListener);" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " markerBounds.extend(myLatlng);" & @CRLF & _ " });" & @CRLF & _ " </script>" & @CRLF & _ " " & @CRLF & _ " <script type="text/javascript">" & @CRLF & _ " $(function() {" & @CRLF & _ " var myLatlng = new google.maps.LatLng(51.914621, -0.211567);" & @CRLF & _ " var icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.png';" & @CRLF & _ " if (/MSIE (\d+\.\d+);/.test(navigator.userAgent)) {" & @CRLF & _ " var ieversion = new Number(RegExp.$1);" & @CRLF & _ " if (ieversion < 7)" & @CRLF & _ " icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.gif';" & @CRLF & _ " }" & @CRLF & _ " var locationMarker = new google.maps.Marker({" & @CRLF & _ " position: myLatlng," & @CRLF & _ " map: map," & @CRLF & _ " icon: new google.maps.MarkerImage(icon)," & @CRLF & _ " title: 'Julians House'" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " var markerListener = google.maps.event.addListener(locationMarker, 'click', function() {" & @CRLF & _ " window.location.href = 'location-results/item/julians-house';" & @CRLF & _ " google.maps.event.removeListener(markerListener);" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " markerBounds.extend(myLatlng);" & @CRLF & _ " });" & @CRLF & _ " </script>" & @CRLF & _ " " & @CRLF & _ " <script type="text/javascript">" & @CRLF & _ " $(function() {" & @CRLF & _ " var myLatlng = new google.maps.LatLng(52.577939, 0.830715);" & @CRLF & _ " var icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.png';" & @CRLF & _ " if (/MSIE (\d+\.\d+);/.test(navigator.userAgent)) {" & @CRLF & _ " var ieversion = new Number(RegExp.$1);" & @CRLF & _ " if (ieversion < 7)" & @CRLF & _ " icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.gif';" & @CRLF & _ " }" & @CRLF & _ " var locationMarker = new google.maps.Marker({" & @CRLF & _ " position: myLatlng," & @CRLF & _ " map: map," & @CRLF & _ " icon: new google.maps.MarkerImage(icon)," & @CRLF & _ " title: 'Kalmia & Mallow'" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " var markerListener = google.maps.event.addListener(locationMarker, 'click', function() {" & @CRLF & _ " window.location.href = 'location-results/item/kalmia---mallow';" & @CRLF & _ " google.maps.event.removeListener(markerListener);" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " markerBounds.extend(myLatlng);" & @CRLF & _ " });" & @CRLF & _ " </script>" & @CRLF & _ " " & @CRLF & _ " <script type="text/javascript">" & @CRLF & _ " $(function() {" & @CRLF & _ " var myLatlng = new google.maps.LatLng(53.63015, -1.373748);" & @CRLF & _ " var icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.png';" & @CRLF & _ " if (/MSIE (\d+\.\d+);/.test(navigator.userAgent)) {" & @CRLF & _ " var ieversion = new Number(RegExp.$1);" & @CRLF & _ " if (ieversion < 7)" & @CRLF & _ " icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.gif';" & @CRLF & _ " }" & @CRLF & _ " var locationMarker = new google.maps.Marker({" & @CRLF & _ " position: myLatlng," & @CRLF & _ " map: map," & @CRLF & _ " icon: new google.maps.MarkerImage(icon)," & @CRLF & _ " title: 'Kinsley Autism Services'" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " var markerListener = google.maps.event.addListener(locationMarker, 'click', function() {" & @CRLF & _ " window.location.href = 'location-results/item/kinsley-autism-services';" & @CRLF & _ " google.maps.event.removeListener(markerListener);" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " markerBounds.extend(myLatlng);" & @CRLF & _ " });" & @CRLF & _ " </script>" & @CRLF & _ " " & @CRLF & _ " <script type="text/javascript">" & @CRLF & _ " $(function() {" & @CRLF & _ " var myLatlng = new google.maps.LatLng(55.606944, -4.500642);" & @CRLF & _ " var icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.png';" & @CRLF & _ " if (/MSIE (\d+\.\d+);/.test(navigator.userAgent)) {" & @CRLF & _ " var ieversion = new Number(RegExp.$1);" & @CRLF & _ " if (ieversion < 7)" & @CRLF & _ " icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.gif';" & @CRLF & _ " }" & @CRLF & _ " var locationMarker = new google.maps.Marker({" & @CRLF & _ " position: myLatlng," & @CRLF & _ " map: map," & @CRLF & _ " icon: new google.maps.MarkerImage(icon)," & @CRLF & _ " title: 'Kirklea'" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " var markerListener = google.maps.event.addListener(locationMarker, 'click', function() {" & @CRLF & _ " window.location.href = 'location-results/item/kirklea';" & @CRLF & _ " google.maps.event.removeListener(markerListener);" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " markerBounds.extend(myLatlng);" & @CRLF & _ " });" & @CRLF & _ " </script>" & @CRLF & _ " " & @CRLF & _ " <script type="text/javascript">" & @CRLF & _ " $(function() {" & @CRLF & _ " var myLatlng = new google.maps.LatLng(51.079126, 1.1615);" & @CRLF & _ " var icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.png';" & @CRLF & _ " if (/MSIE (\d+\.\d+);/.test(navigator.userAgent)) {" & @CRLF & _ " var ieversion = new Number(RegExp.$1);" & @CRLF & _ " if (ieversion < 7)" & @CRLF & _ " icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.gif';" & @CRLF & _ " }" & @CRLF & _ " var locationMarker = new google.maps.Marker({" & @CRLF & _ " position: myLatlng," & @CRLF & _ " map: map," & @CRLF & _ " icon: new google.maps.MarkerImage(icon)," & @CRLF & _ " title: 'Laburnum House'" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " var markerListener = google.maps.event.addListener(locationMarker, 'click', function() {" & @CRLF & _ " window.location.href = 'location-results/item/laburnum-house';" & @CRLF & _ " google.maps.event.removeListener(markerListener);" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " markerBounds.extend(myLatlng);" & @CRLF & _ " });" & @CRLF & _ " </script>" & @CRLF & _ " " & @CRLF & _ " <script type="text/javascript">" & @CRLF & _ " $(function() {" & @CRLF & _ " var myLatlng = new google.maps.LatLng(52.065733, -2.654468);" & @CRLF & _ " var icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.png';" & @CRLF & _ " if (/MSIE (\d+\.\d+);/.test(navigator.userAgent)) {" & @CRLF & _ " var ieversion = new Number(RegExp.$1);" & @CRLF & _ " if (ieversion < 7)" & @CRLF & _ " icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.gif';" & @CRLF & _ " }" & @CRLF & _ " var locationMarker = new google.maps.Marker({" & @CRLF & _ " position: myLatlng," & @CRLF & _ " map: map," & @CRLF & _ " icon: new google.maps.MarkerImage(icon)," & @CRLF & _ " title: 'Lammas Lodge'" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " var markerListener = google.maps.event.addListener(locationMarker, 'click', function() {" & @CRLF & _ " window.location.href = 'location-results/item/lammas-lodge';" & @CRLF & _ " google.maps.event.removeListener(markerListener);" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " markerBounds.extend(myLatlng);" & @CRLF & _ " });" & @CRLF & _ " </script>" & @CRLF & _ " " & @CRLF & _ " <script type="text/javascript">" & @CRLF & _ " $(function() {" & @CRLF & _ " var myLatlng = new google.maps.LatLng(53.414787, -1.199351);" & @CRLF & _ " var icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.png';" & @CRLF & _ " if (/MSIE (\d+\.\d+);/.test(navigator.userAgent)) {" & @CRLF & _ " var ieversion = new Number(RegExp.$1);" & @CRLF & _ " if (ieversion < 7)" & @CRLF & _ " icon = '/Sitefinity/WebSiteTemplates/Craegmoor/App_Themes/Craegmoor/images/map/pin.gif';" & @CRLF & _ " }" & @CRLF & _ " var locationMarker = new google.maps.Marker({" & @CRLF & _ " position: myLatlng," & @CRLF & _ " map: map," & @CRLF & _ " icon: new google.maps.MarkerImage(icon)," & @CRLF & _ " title: 'Levitt Mill and Barn'" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " var markerListener = google.maps.event.addListener(locationMarker, 'click', function() {" & @CRLF & _ " window.location.href = 'location-results/item/levitt-mill';" & @CRLF & _ " google.maps.event.removeListener(markerListener);" & @CRLF & _ " });" & @CRLF & _ "" & @CRLF & _ " " Local $aArray = StringRegExp($sString, $sRegex, $STR_REGEXPARRAYGLOBALFULLMATCH) Local $aFullArray[0] For $i = 0 To UBound($aArray) -1 _ArrayConcatenate($aFullArray, $aArray[$i]) Next $aArray = $aFullArray ; Present the entire match result _ArrayDisplay($aArray, "Result")

Please keep in mind that these code samples are automatically generated and are not guaranteed to work. If you find any syntax errors, feel free to submit a bug report. For a full regex reference for AutoIt, please visit: https://www.autoitscript.com/autoit3/docs/functions/StringRegExp.htm