function Acceder(lien)
{
fenetre();
Nfen.location.href = lien; 
}

function fenetre()
{
	Nfen = window.open('','Nfen', 'width=474,height=212,toolbar=no,location=no,directories=no,scrollbars=yes,resizeable=yes,dependent=yes')
	if (!Nfen.focused) Nfen.focus();
}

function openWin(url,height,width)
{
	myWin = window.open(url, "myWin", "height="+height+",width="+width);
}

function openWinScroll(url,height,width)
{
	myWin = window.open(url, "myWin", "height="+height+",width="+width+",scrollbars=yes");
}



