
function unsec(lien)
{
	if ( (lien) && (lien.protocol=='https:') )
	{
		lien.protocol='http:' ;
		lien.port=80 ;
	}
}

function deSecuriserPage() {

	for (i=0 ; i<document.links.length ; i++)
	{
		if (document.links[i].protocol=='https:')
		{
			document.links[i].protocol='http:' ;
			document.links[i].port=80 ;
		}
	}

}


