
function checkMail(a) {
var place = a.indexOf("@",1);
var point = a.indexOf(".",place+1);
var espace = a.search(" ");

if ((espace==-1)&&(place > -1)&&(a.length >2)&&(point > 1)) {return true;}
else {return false;}
}


function email(adr) { 
	window.open('/inc/mail/contact.php?mail='+adr+'#mail','email','width=800, height=600, toolbar=0, l0cation=0, directories=0, status=0, menubar=0, scrollbars=0, resizable=0, left=300, top=200'); 
}


function storeCaret (textEl){
   if (textEl.createTextRange) 
   textEl.caretPos = document.selection.createRange().duplicate();
}


