function getImageMap(){
   var currentURL = document.location;
   var devIP = /10.1.1.111/;
   var testIP = /10.1.1.210/;
   var darienURL = /darien/;
   var pc88=/pc88/;
   var nonsecureURL = 'http://www.quotesmith.com';
   if (devIP.test(currentURL)){
      nonsecureURL = 'http://10.1.1.111';
   }
   else if (testIP.test(currentURL)){
      nonsecureURL = 'http://10.1.1.210';
   }
   else if (darienURL.test(currentURL)){
      nonsecureURL = 'http://darien.quotesmith.com';
   }

document.write('<area shape="rect" alt="Term" coords="46,39,95,70" href="' + nonsecureURL + '/quotesmith/controller?reqid=qstermindex" title="Term">' +
'<area shape="rect" alt="Home" coords="0,39,46,70" href="' + nonsecureURL + '/" title="Home">' +
'<area shape="rect" alt="Travel" coords="460,39,540,70" href="' + nonsecureURL + '/travelredir.html" title="Travel">' +
'<area shape="rect" alt="Auto" coords="96,39,145,70" href="' + nonsecureURL + '/auto_f.html" title="Auto">' +
'<area shape="rect" alt="Boat, Watercraft, RV & Motorcycle" coords="357,39,460,70" href="' + nonsecureURL + '/BWRVM_f.html" title="Boat, Watercraft, RV & Motorcycle">' +
'<area shape="rect" alt="Child Life" coords="298,39,357,70" href="' + nonsecureURL + '/#childlife" title="Child Life">' +
'<area shape="rect" alt="Annuities" coords="437,7,532,38" href="' + nonsecureURL + '/cgi/annuity/qsannuityindex" title="Annuities">' +
'<area shape="rect" alt="Individual, Family & Small Group Medical" coords="146,39,297,70" href="' + nonsecureURL + '/index.html#Medical" title="Individual, Family & Small Group Medical">' +
'<area shape="rect" alt="" coords="46,39,95,70" href="' + nonsecureURL + '/">' +
'<area shape="rect" alt="Homeowners" coords="284,7,365,38" href="' + nonsecureURL + '/index.html#homeowner" title="Homeowners">' +
'<area shape="rect" alt="Application Status" coords="210,7,284,38" href="' + nonsecureURL + '/apr.html" title="Application Status">' +
'<area shape="rect" alt="Renter\'s" coords="365,8,437,39" href="' + nonsecureURL + '/rentersredir.html" title="Renter\'s">' +
'<area shape="rect" alt="No-Exam Life" coords="134,7,209,38" href="' + nonsecureURL + '/index.html#instantlife" title="No-Exam Life">' +
'<area shape="rect" alt="Medicare Supplement" coords="59,7,134,38" href="' + nonsecureURL + '/index.html#medsup" title="Medicare Supplement">' +
'<area shape="rect" alt="Dental" coords="8,7,58,38" href="' + nonsecureURL + '/index.html#dental" title="Dental">');
}

