function foncjavpj()
{
DIVpj1Vis(); 
document.onmousemove = function(monevent) { mousepj1(monevent); };
}

function DIVpj1Vis()
{
document.getElementById('DIVpj1').setAttribute("class","juridiv2");
document.getElementById('DIVpj1').setAttribute("className","juridiv2");
}
// appeler pour rendre invisible le 'div'
function DIVpj1Inv()
{
document.getElementById('DIVpj1').setAttribute("class","juridiv1");
document.getElementById('DIVpj1').setAttribute("className","juridiv1");
}

function mousepj1(monevent)
{
monevent = monevent || window.event; 
cible = monevent.target || window.event.srcElement; 
cibleID = cible.getAttribute("id"); 
if ((cibleID!="DIVpj1")&&(cible.getAttribute("className")!="juridiqueref")&&(cible.getAttribute("class")!="juridiqueref")&&(cible.getAttribute("class")!="juridiv1"))
	{
	document.onmousemove = null;
	DIVpj1Inv();
	}
}