	function displayEmail(coded)
{
 	//coded = "vdxo77o5@3nsusn5.y3q"
		cipher = "aZbYcXdWeVfUgThSiRjQkPlOmNnMoLpKqJrIsHtGuFvEwDxCyBzA1234567890"
		shift=coded.length
		link="";
		for (i=0; i<coded.length; i++){
			if (cipher.indexOf(coded.charAt(i))==-1){
				ltr=coded.charAt(i)
				link+=(ltr)
			}
			else {     
				ltr = (cipher.indexOf(coded.charAt(i))-shift+cipher.length) % cipher.length
				link+=(cipher.charAt(ltr))
			}				
    }
			document.write("<a  href='mailto:"+link+"'><IMG SRC=\"images/email.jpg\" width=20 height=16 border=0></a>")
    }
	
	function displayEmailName(coded,name)
{
 	//coded = "vdxo77o5@3nsusn5.y3q"
		cipher = "aZbYcXdWeVfUgThSiRjQkPlOmNnMoLpKqJrIsHtGuFvEwDxCyBzA1234567890"
		shift=coded.length
		link="";
		for (i=0; i<coded.length; i++){
			if (cipher.indexOf(coded.charAt(i))==-1){
				ltr=coded.charAt(i)
				link+=(ltr)
			}
			else {     
				ltr = (cipher.indexOf(coded.charAt(i))-shift+cipher.length) % cipher.length
				link+=(cipher.charAt(ltr))
			}				
    }
			document.write("<a href='mailto:"+link+"'>"+name+"</a>")
    }
	
		function displayEmail2(coded)
{
 	//coded = "vdxo77o5@3nsusn5.y3q"
		cipher = "Ps2opluX90TSZ3E4anmYeIOBycjAQtJMrvqCFHKk6W1dLGR8zgUf5Vbwi7NhxD"
		shift=coded.length
		link="";
		for (i=0; i<coded.length; i++){
			if (cipher.indexOf(coded.charAt(i))==-1){
				ltr=coded.charAt(i)
				link+=(ltr)
			}
			else {     
				ltr = (cipher.indexOf(coded.charAt(i))-shift+cipher.length) % cipher.length
				link+=(cipher.charAt(ltr))
			}				
    }
			document.write("<a  href='mailto:"+link+"'><IMG SRC=\"images/email.jpg\" width=20 height=16 border=0></a>")
    }
	