// this javscript hides email addresses within the image map from spambots
// by www.jehochman.com
var domain = "resavue";
var tld = ".com";
var protocol = "mailto";
var at = "@";
var inc_emailinclude_js =
'<map name="Map">\n '
+ '<area shape="rect" coords="113,102,148,122" href="' + protocol + ':info' + at + domain + tld + ' " alt="Info">\n ' 
+ '<area shape="rect" coords="154,104,207,122" href="' + protocol + ':steve' + at + domain + tld + ' " alt="Steve">\n ' 
+ '<area shape="rect" coords="111,208,147,227" href="' + protocol + ':info' + at + domain + tld + ' " alt="Info">\n '
+ '<area shape="rect" coords="153,205,195,228" href="' + protocol + ':john' + at + domain + tld + ' " alt="John">\n '
+ '<area shape="rect" coords="205,208,231,228" href="' + protocol + ':ira' + at + domain + tld + ' " alt="Ira">\n '
+ '<area shape="rect" coords="240,208,314,229" href="' + protocol + ':christine' + at + domain + tld + ' " alt="Christine">\n '
+ '<area shape="rect" coords="288,281,329,300" href="' + protocol + ':john' + at + domain + tld + ' " alt="John">\n '
+ '<area shape="rect" coords="268,307,295,329" href="' + protocol + ':ira' + at + domain + tld + ' " alt="Ira">\n  '
+ '<area shape="rect" coords="120,337,235,373" href="contact.php#form" alt="Have someone contact me">\n '
+ '</map>';

// end_var_declaration
document.write(inc_emailinclude_js);
