// javascript document

// write ie style sheet
var client = navigator.userAgent;
if (client.indexOf("MSIE") != -1) {
	document.write("<link rel=\"stylesheet\" type=\"text/css\" href=\"styles/styles_ie.css\" />");	
}
function contactEmail() {
	var mailto = "rlcsupport";
	var linktext = "Contact Us";
	document.write("<a href=\"mailto:" + mailto + "@" + domain + "\">" + linktext + "</a>");
}