function OpenWin(nWin)
{
	var sURL;
	var nWidth;
	var nHeight;
	var hWnd;
	var sTarget;
	
	switch (nWin)
	{
		case 1:
			sURL = "victimes.asp"
			sTarget = "win1"
			nLeft = 50;
			nTop  = 50;
			nWidth = 720;
			nHeight = 292;
			break;
			
		case 2:
			sURL = "symptomes.asp"
			sTarget = "win2"
			nLeft = 50;
			nTop  = 50;
			nWidth = 700;
			nHeight = 346;
			break;
	}
	
	hWnd = document.open(sURL, sTarget, "width="+nWidth+", height="+nHeight+", channelmode=0, directories=0, fullscreen=0, location=0, menubar=0, resizable=0, scrollbars=0, status=0, titlebar=0, toolbar=0" )
	hWnd.focus();
}

