function OpenWin(vAction,vWinSize,vScroll,vMenu) {
	if(typeof(wCible)=='object') {
		wCible.close()
	}
	vSize = vWinSize.split('/')
	sXSize    = screen.width
	sYSize    = screen.height
	wWidth   = vSize[0]
	wHeight  = vSize[1]
	wXPos    = vSize[2]
	wYPos    = vSize[3]
	wHref	 = vAction
	if(wXPos == -1)wXPos = Math.floor((sXSize - wWidth)/2)
	if(wYPos == -1)wYPos = Math.floor((sYSize - wHeight-20)/2)
	wCible = window.open(wHref,'wCibleX'+wXPos+'Y'+wYPos,'width='+wWidth+',height='+wHeight+',scrollbars=' + vScroll + ',location=No,left='+wXPos+',top='+wYPos+',menubar='+vMenu+',alwaysRaised=yes,resizable=no,toolbar=no,dependent=yes');
}
