function popAllArt() 
{
	haut = screen.height/2-173;
	larg = screen.width/2-325;

	var option = "scrollbars=yes,resizable=yes,width=580,height=350,top="+haut+",left="+larg;
	var fen = window.open("/dvdtheque/voirAllArt.asp","Article",option);
	fen.focus();
}
function popArt(id_article) 
{
	haut = screen.height/2-173;
	larg = screen.width/2-325;

	var option = "scrollbars=yes,resizable=yes,width=580,height=356,top="+haut+",left="+larg;
	var fen = window.open("/dvdtheque/voirArticle.asp?id_article="+id_article,"Article",option);
	fen.focus();
}


function popVid(v_chemin) 
{
	haut = screen.height/2-173;
	larg = screen.width/2-325;

	var option = "scrollbars=auto,resizable=yes,width=539,height=500,top="+haut+",left="+larg;
	var fen = window.open("/voirVideo_flash.asp?id=" + v_chemin,"Video",option);
	fen.focus();
}
