// JavaScript Document
function External(a1, a2, d1, d2 ){
    var chardot = '.'; 
    var charat = '@'; 
	
    document.write('<a href="ma'); 
    document.write('ilto:'); 
	
	
	for(i=0; i < a1.length; i++ ){
		document.write(a1[i]);
		if(i < a1.length - 1){
			document.write(chardot);
			}
		}
	document.write(charat);
	
	for(i=0; i < a2.length; i++){
		document.write(a2[i]);
		if(i < a2.length -1){
			document.write(chardot);
			}
		}
    document.write('">'); 
	
	for(i=0; i < d1.length; i++){
		document.write(d1[i]);
		if(i < d1.length - 1){
			document.write(chardot);
			}
		}
	if(d2 != null && d2.length > 0){
		document.write(charat);
		
		for(i=0; i < d2.length; i++){
			document.write(d2[i]);
			if(i < d2.length - 1){
				document.write(chardot);
				}
			}
		}		
	document.write('</a>');
	}
