//**********************************************************************************************
//**********************************************************************************************
//***
//***	Fonctions JavaScript du site Internet
//***	TECHNETEA (A.G) 16/04/02
//***
//**********************************************************************************************
//**********************************************************************************************




//----------------------------------------------------------------------------------------------
//----	initialisation de la page
//----------------------------------------------------------------------------------------------
function	PageInit()
{
	var	node;

	node = document.getElementById("id_contact");
	node.setAttribute("href",Extract("t@elcihanme:toetal.icaomm"));
}


function 	Extract(code)
{
	var	i, t1="", t2="", c;

	i=code.length -1;
	while(i>=0)
	{	t2 = code.charAt(i--) + t2;
		if(i<0)
			break;
		t1 += code.charAt(i--);
	}
	return(t1 + t2);
}
