function sendMail(user,domain,cellID) {
	var url = "/cms/_pages/sendmail.php?user="+user+"&domain="+domain+"&cellID="+cellID;
	var width = 540;
	var height = 460;
	var windowname = "sendmail";
	var RandLinks = (window.screen.availWidth - width)/2;
	var RandOben = (window.screen.availHeight - height)/2;
	OpenWin = this.open(url, windowname, "left="+RandLinks+",top="+RandOben+",toolbar=no,menubar=no,location=no,scrollbars=no,resizable=no,height="+height+",width="+width);
	OpenWin.focus();
}
