/* --------------------------------------------------------------
Titre  / Title:     Utils
Auteur / Author:    DL
MaJ    / Updated:   2008-03-28
   -------------------------------------------------------------- */

/* --- [ email ] --------------------------------------------- */
// Protect addresses against robots engines
function email( name, address, link, subject, text ) {
	var dest = name +'@'+ address;
	var param = '';
//	var class = ( ( classType ) ? (' class="'+classType+'"') : '' );
	var classType = ' class="email"';
	link = ( link ) ? link : dest;
	var subject2 =  ( ( navigator.userAgent.indexOf('Win') != -1 ) ? escape( subject ) : subject );
	subject = subject2;

	if( ( subject ) || ( text ) ) {
		if( subject ) param = '?subject=' + subject;
		if( text ) param += ( ( subject ) ? '&body=' : '?body=' ) + text;
	}
	document.write( '<a class="emlink" href="mailto:' + dest + param +'"'+classType+'>' + link + '</a>' );
}

function getEmail( name, address, link, subject, text ) {
	var dest = name +'@'+ address;
	var param = '';
	link = ( link ) ? link : dest;
	var subject2 =  ( ( navigator.userAgent.indexOf('Win') != -1 ) ? escape( subject ) : subject );
	subject = subject2;

	if( ( subject ) || ( text ) ) {
		if( subject ) param = '?subject=' + subject;
		if( text ) param += ( ( subject ) ? '&body=' : '?body=' ) + text;
	}
	return ('<a class="job_title" href="mailto:' + dest + param +'">' + link + '</a>');
}

function PopUp(theURL,winName,features, myWidth, myHeight, isCenter) { //v3.0
  if(window.screen)if(isCenter){
	var myLeft = (screen.width-myWidth)/2;
	var myTop = (screen.height-myHeight)/2;
	features+=(features!='')?',':'';
	features+='left='+myLeft+',top='+myTop;
  }
  window.open(theURL,winName,features+',width='+myWidth+',height='+myHeight);
}

/* --- [ ... ] -------------------------------------------------- */
