function sendMailTo(name, company, domain) {
	locationstring = 'mai' + 'lto:' + name + '@' + company + '.' + domain;
	window.location.replace(locationstring);
}

function open_new_window(url, name, width, height, top, left, resizable) {
	var attr = '';
	if (width) attr += 'width='+width+',';
	if (height) attr += 'height='+height+',';
	if (top) attr += 'top='+top+',';
	if (left) attr += 'left='+left+',';
	if (resizable) attr += 'resizable=yes,';
	attr += 'status=yes,toolbar=no,location=no,scrollbars=no,directories=no,copyhistory=no';
	window.open(url,name,attr);
}

function open_max_window(url, name) {
	window.open(url,name,'width='+screen.availWidth+',height='+screen.availHeight+',status=yes,resizable=yes,toolbar=no,location=no,scrollbars=no,directories=no,copyhistory=no');
}
