// JavaScript Document

function open_email(typ) {
var theuser;
var thehost;
var themessage;
if (typ == 1)
{
	theuser = "webmaster";
	thehost = "pccarx.com";
	thesubject = "Email_from_pccarx.ca";
    themessage = "Webmaster";
}
else if (typ == 2)
{ 
	theuser = "customerservice";
	thehost = "pccarx.ca";
	thesubject = "Email_from_pccarx.ca";
	themessage = "Customer Service";
}
else if (typ == 3)
{ 
	theuser = "communications";
	thehost = "pccarx.com";
	thesubject = "Email_from_pccarx.ca";
	themessage = "Communications Department";
}
else if (typ == 4)
{ 
	theuser = "pk";
	thehost = "pccarx.com";
	thesubject = "Email_from_pccarx.ca";
	themessage = "Web Support";
}
else if (typ == 5)
{ 
	theuser = "pceutics";
	thehost = "pccarx.com";
	thesubject = "Email_from_pccarx.ca";
	themessage = "PCCA Institute";
}
else if (typ == 6)
{ 
	theuser = "psd";
	thehost = "pccarx.com";
	thesubject = "Email_from_pccarx.ca";
	themessage = "Pharmacy Services";
} 
	document.write("<a href=" + "mail" + "to:" + theuser + "@" + thehost + "?subject=" + thesubject + ">" + themessage + "</a>")
}