function setEventsForContacts() {
	var sendarr = document.getElementsByName('sendmail');
	if(sendarr.length > 0) {
		for(var i = 0; i < sendarr.length; i++){
			sendarr[i].onclick = function() {
			var params = this.className;
			params = params.split('_');
			var barid = params[1];
				var sendarr = document.getElementsByName('sendmail');
				for(var i = 0; i < sendarr.length; i++){
					var tmpparams = sendarr[i].className;
					tmpparams = tmpparams.split('_');
					var tmpbarid = tmpparams[1];
					if(tmpbarid != barid){
						document.getElementById('sendmail_frm_' + tmpbarid).style.display = "none";
						document.getElementById('td_' + tmpbarid).className = "none";
						}
					}
				if(document.getElementById('sendmail_frm_' + barid).style.display == 'block'){
					document.getElementById('sendmail_frm_' + barid).style.display = 'none';
					document.getElementById('td_' + barid).className = "none";
					}
				else{
					document.getElementById('sendmail_frm_' + barid).style.display = "block";
					document.getElementById('td_' + barid).className = "mailform";
					}
				return false;
				}
			}
		}
	}
