function hideComp()
{
	checkbox1 = document.forms['profil'].elements['company'].checked;
	checkbox2 = document.forms['profil'].elements['c_sameData'].checked;
	if(checkbox1)
	{
		if(!checkbox2) 
		{
			for(i=1; i<9; i++)
			{
				document.getElementById("comp"+i).style.display="";
			}
		}
		else
		{
			for(i=1; i<4; i++)
			{
				document.getElementById("comp"+i).style.display="";
			}
			for(i=4; i<9; i++)
			{
				document.getElementById("comp"+i).style.display="none";
			}
		}
	}
	else
	{
		for(i=1; i<9; i++)
		{
			document.getElementById("comp"+i).style.display="none";
		}
	}
}

function retrieveSelection(index1, index2)
{
	document.forms['profil'].elements['country'].selectedIndex=index1;
	document.forms['profil'].elements['c_country'].selectedIndex=index2;
}
