// ##########################################################################

// SET ADDRESS + PHONE VARS

var phone = "613-686-6449";
var address = "9 Collington Street, P.O.Box 4921 Station E, Ottawa ON, K1S 5J1";
var mailA = "@";
var mailB = ".ca";
var mailC = "mit"+mailA+"MarketAid"+mailB;


// SEND MAIL THROUGH WIN32 CLIENT

// mail home

var Ln = "-------------------------------------------------------------------------";
var NL = "%0D%0A";

function sendmail(){

bTo = "mit";
var bAt = "@";
dOm = "MarketAid";
var dOt = ".ca";

var subInfo= " MarketAid information request";


window.location = "mailto:"+bTo+bAt+dOm+dOt
+"?subject="
+"RE:"+subInfo 
+"&body="
+"Thank you for visiting Marketaid - we will reply shortly."+NL+NL 
+"Firstly, in order for us to be able to address your query sensibly,"+NL
+"could you please let us know a little bit about you?"+NL+Ln+NL
+"NAME :" +NL+ "PHONE NUMBER :" +NL+ "E-MAIL ADDRESS :" +NL+ "COMPANY NAME :" +NL+Ln+NL
+"HOW MAY WE HELP YOU ?"+NL+NL+NL+NL+NL+Ln+NL
+"We appreciate your taking the time to contact us."+NL
+"Best wishes from Marketaid"+NL
+"www.MarketAid.ca"+NL
+"Marketaid Interactive Technologies"+NL+Ln;
	}

