//<SCRIPT>
function ShowEmail(strHead, strEmail)
{
	//Hide email from SpamBots
	var strServer = "canadianbearings.com";
	var strFullEmail = "<a href=" + "mail" + "to:" + strEmail + "@" + strServer + ">" + strEmail + "@" + strServer + "</a>";
	document.write("<B>"+ strHead + "</B> " + strFullEmail);
}

function ShowGeneralEmailHeadNS(strHead, strP)
{
	if (parseFloat(navigator.appVersion) >= 4)
	{
		document.write("<font face=\"Verdana, Arial, sans-serif\" size=\"2\"><b>" + strHead + "</b></font>");
		document.write("<HR WIDTH=\"100%\" ALIGN=\"left\">");
		document.write("<font face=\"Verdana, Arial, sans-serif\" size=\"2\">" + strP + "</font><br><br><br>");
	}
}

function ShowGeneralEmailHeadIE(strHead, strP)
{
	document.write("<H2>" + strHead + "</H2>");
	document.write("<HR WIDTH=\"100%\" ALIGN=\"left\"><P>" + strP + "</P><BR>");

}

function ShowGeneralEmailIE(strHead, strEmail)
{
	//Hide email from SpamBots
	var strServer = "canadianbearings.com";
	var strFullEmail = "<a href=" + "mail" + "to:" + strEmail + "@" + strServer + ">" + strEmail + "@" + strServer + "</a>";
	
	document.write("<p>");
	document.write("<B>"+ strHead + "</B> <br>");
	document.write(strFullEmail);
	document.write("</P><br>");
}

function ShowGeneralEmailNS(strHead, strEmail)
{
	//Hide email from SpamBots
	var strServer = "canadianbearings.com";
	var strFullEmail = "<a href=" + "mail" + "to:" + strEmail + "@" + strServer + ">" + strEmail + "@" + strServer + "</a>";
	
	if (parseFloat(navigator.appVersion) >= 4)
	{
		document.write("<font face=\"Verdana, Arial, sans-serif\" size=\"2\">");
		document.write("<br>");
		document.write("<B>"+ strHead + "</B> <br>");
		document.write(strFullEmail);
		document.write("<br>");
		document.write("</font>");
	}
}

