<!--
//Function ouvrant un popUp
function popUp(url, width, height, bCenter, bScrollBar)
{

	var popUp ;

	//---------la popUp ne doit pas etre centrée
	if (!bCenter)
	{
		var calcLeft = 50;
		var calcTop = 50;		
	}
	//---------la popUp doit etre centrée
	else
	{
		var calcLeft = 400;
		var calcTop = 300;		
		
		//---------si la version du navigateur > 4 alors on peut centrer la popUp
		if (parseInt(navigator.appVersion) >= 4)
		{
			calcTop = screen.availHeight /2 - height ;
			calcLeft = screen.availWidth / 2 - width / 2 ;
		}
	}
	
	//------------si la version du navigateur est > 3
	if (parseInt(navigator.appVersion) > 3)
	{
		var sb = (bScrollBar) ?',scrollbars' :'' ;
		popUp = window.open('' + url + '', null,'top=' + calcTop + ',left=' + calcLeft + ',height=' + height + ',width=' + width + ',resizable' + sb) ;
		popUp.focus() ;						
    }
    else alert("Vous avez besoin d'un browser dont la version est supérieure à 3.");
}


function f1(Client,IDArticle)
{
	
	popUp('ClientFolder/'+Client+'/produit_popup.asp?IDArticle='+IDArticle,640,480,true, false);
//f1=window.open('' + 'produit_popup.asp?IDArticle='+IDArticle + '', null,'top=' + 0 + ',left=' + 0 + ',height=' + 600 + ',width=' + 600 + ',resizable' + 0) ;
	//url, width, height, bCenter, bScrollBar
}

function f2(url)
{
	
	popUp(url,600,700,true, true);
//f1=window.open('' + 'produit_popup.asp?IDArticle='+IDArticle + '', null,'top=' + 0 + ',left=' + 0 + ',height=' + 600 + ',width=' + 600 + ',resizable' + 0) ;
	//url, width, height, bCenter, bScrollBar
}

function f3(vIDArticle,vViewKey)
{
	popUp('popup.aspx?IDArticle='+vIDArticle+'&ViewKey='+vViewKey,600,520,true, true);
//f1=window.open('' + 'produit_popup.asp?IDArticle='+IDArticle + '', null,'top=' + 0 + ',left=' + 0 + ',height=' + 600 + ',width=' + 600 + ',resizable' + 0) ;
	//url, width, height, bCenter, bScrollBar
}


//-->
