function textCounter(field, countfield, maxlimit) {
if (field.value.length > maxlimit) 
	field.value = field.value.substring(0, maxlimit);
else 
	countfield.value = maxlimit - field.value.length;
}

function sendToFriend() {
	var subdir = "";
	window.location.href = 'http://' + location.hostname + subdir + '/utilities/tell-colleague.cfm?page=' + escape(location.href);	
}

function ContactRep() {
	var subdir = "";
	window.location.href = 'http://' + location.hostname + subdir + '/utilities/contact-sales-rep.cfm?page=' + escape(location.href);	
}

