// This version handles two different email accounts (site owner and Webmaster, for example)
// NOTE that each email address build is repeated TWICE so you've got to edit 4 code iterations here
// Functions called here and in the HTML are winClickChamber() and winClickMS() so edit those to suit

if(navigator.userAgent.substring(0,8) == "Mozilla/")
  if (navigator.userAgent.indexOf("MSIE") == -1)  
    if (navigator.userAgent.indexOf("Opera") == -1)  
     function winClickChamber() {
     var emailWindow;
     emailWindow = window.open("","Email Window","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,height=100,width=550");
     emailWindow.document.writeln('<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"><html><head><title>Email the Weatherford Chamber of Commerce</title><meta http-equiv="content-type" content="text/html; charset=ISO-8859-1"></head>');
     var _u   = "info";
     var _d = "weatherford-chamber.com";
     var _l   = _u + "@" + _d + "?subject=Peach Festival";
     var _m = "Click Here to E-mail the Weatherford Chamber of Commerce.";
     emailWindow.document.writeln('<body text="#ffffff" bgcolor="#4c0000" link="#FFFFFF" vlink="#F3CC30" alink="#33cc00">');
     emailWindow.document.writeln('<font face="Verdana, Arial, Helvetica, sans-serif">');
     emailWindow.document.writeln('<p align="center">');
     emailWindow.document.writeln("<a href='mailto:"+_l+"'>"+_m+"</a>");
     emailWindow.document.writeln('<p align="center">');
     emailWindow.document.writeln('<a href=location.self() onclick="self.close()">Close</a><br>');
     emailWindow.document.writeln('</body></html>');
}
    else
      document.writeln("Sorry...function failed!")
  else 
     function winClickChamber() {
     var _u   = "info";
     var _d = "weatherford-chamber.com";
     var _l   = _u + "@" + _d + "?subject=Peach Festival";
     var _m = "Click Here to E-mail the Weatherford Chamber of Commerce.";
     emailDoc=window.open("","EmailWindow","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,height=100,width=550");
     emailDoc.document.open();
     emailDoc.document.writeln('<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"><html><head><title>Email the Weatherford Chamber of Commerce</title><meta http-equiv="content-type" content="text/html; charset=ISO-8859-1"></head>');
     emailDoc.document.writeln('<body text="#ffffff" bgcolor="#4c0000" link="#FFFFFF" vlink="#F3CC30" alink="#F3CC30">');
     emailDoc.document.writeln('<font face="Verdana, Arial, Helvetica, sans-serif">');
     emailDoc.document.writeln('<p align="center">');
     emailDoc.document.writeln("<a href='mailto:"+_l+"'>"+_m+"</a>");
     emailDoc.document.writeln('<p align="center">');
     emailDoc.document.writeln('<a href=location.self() onclick="self.close()">Close</a><br>');
     emailDoc.document.writeln('</body></html>');
     emailDoc.document.close();
}
else 
  document.writeln("Sorry...function failed!")

if(navigator.userAgent.substring(0,8) == "Mozilla/")
  if (navigator.userAgent.indexOf("MSIE") == -1)  
    if (navigator.userAgent.indexOf("Opera") == -1)  
     function winClickMS() {
     var emailWindow;
     emailWindow = window.open("","Email Window","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,height=100,width=375");
     emailWindow.document.writeln('<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"><html><head><title>Email Media Stampede</title><meta http-equiv="content-type" content="text/html; charset=ISO-8859-1"></head>');
     var _u   = "tony";
     var _d = "mediastampede.com";
     var _l   = _u + "@" + _d + "?subject=Peach Festival Website";
     var _m = "Click Here to E-mail Media Stampede";
     emailWindow.document.writeln('<body text="#ffffff" bgcolor="#0f7d00" link="#FFFFFF" vlink="#F3CC30" alink="#33cc00">');
     emailWindow.document.writeln('<font face="Verdana, Arial, Helvetica, sans-serif">');
     emailWindow.document.writeln('<p align="center">');
     emailWindow.document.writeln("<a href='mailto:"+_l+"'>"+_m+"</a>");
     emailWindow.document.writeln('<p align="center">');
     emailWindow.document.writeln('<a href=location.self() onclick="self.close()">Close</a><br>');
     emailWindow.document.writeln('</body></html>');
}
    else
      document.writeln("Sorry...function failed!")
  else 
     function winClickMS() {
     var _u   = "tony";
     var _d = "mediastampede.com";
     var _l   = _u + "@" + _d + "?subject=Peach Festival Website";
     var _m = "Click Here to E-mail Media Stampede";
     emailDoc=window.open("","EmailWindow","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,height=100,width=375");
     emailDoc.document.open();
     emailDoc.document.writeln('<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"><html><head><title>Email Media Stampede</title><meta http-equiv="content-type" content="text/html; charset=ISO-8859-1"></head>');
     emailDoc.document.writeln('<body text="#ffffff" bgcolor="#0f7d00" link="#FFFFFF" vlink="#F3CC30" alink="#F3CC30">');
     emailDoc.document.writeln('<font face="Verdana, Arial, Helvetica, sans-serif">');
     emailDoc.document.writeln('<p align="center">');
     emailDoc.document.writeln("<a href='mailto:"+_l+"'>"+_m+"</a>");
     emailDoc.document.writeln('<p align="center">');
     emailDoc.document.writeln('<a href=location.self() onclick="self.close()">Close</a><br>');
     emailDoc.document.writeln('</body></html>');
     emailDoc.document.close();
}
else 
  document.writeln("Sorry...function failed!")
 