function getArobase() {
	return '@';
}

function newWindow(newContent, name)
 	{
  		winContent = window.open(newContent, name, 'left=165, top=310,width=790,height=500, toolbar=yes,scrollbars=yes, resizable=yes')         
 	}

function getObjet(x) {
	if (typeof x != 'string') {
		return x;
	}
	else if (Boolean(document.getElementById)) {
		return document.getElementById(x);
	}
	else if (Boolean(document.all)) {
		return eval('document.all.' + x);
	}
	else {
		return null;
	}
}

function genereMail(emplacement, avant, apres) {
	getObjet(emplacement).innerHTML='<a CLASS=email href="mailto:' + avant + getArobase() + apres + '?subject=[CV Vincent Lebrun] :">' + avant + getArobase() + apres + '</a>';
}


function genereMails() {
	genereMail('mail1','vlebrun','bloobyte.com');
}

