function flip(s) {
   if (!s) return '';
   var flip='';
   for (i = s.length-1; i>=0; i--)
       flip+=s.charAt(i)
   return flip;
}

/* href="javascript:ecm('','','','');" */
function ecm( a, d, c, s ) {  
   /* a - local name; d - domain name; c - country of domain; s - subject*/   
   /* construct the address and kick it off */
   x =  a + '@' + d + '.' + c;
   x =  flip('otliam') + ':' + x; 
   if (typeof s != 'undefined'){
		x +=  '?' + flip('tcejbus') + '=' + s;
   }
window.location.href = x;
   window.status =  x;
}






