function tri(tri)
{
	window.document.forms[0].tri.value = tri;
	window.document.forms[0].notfirst.value=0;
	window.document.forms[0].page.value=0;
	window.document.forms[0].sens.value=1;
	window.document.forms[0].submit();
}
function Go(sens)
{
 if(sens == 1)
  window.document.forms[0].sens.value=1;
 else
    if(sens == 2)
    window.document.forms[0].sens.value=2;
 window.document.forms[0].submit();
}

function LinkPages(page)
{
	document.forms[0].page.value=page;
	document.forms[0].sens.value=0;
	document.forms[0].submit();
}

//############ FONCTIONS PERMETTANT DE CENTRER LA POPUP TOUT EN OUTREPASSANT L'ANTIPOPUP #########

function top_centre(hauteur)
	{	 
	 var top=(screen.height-hauteur)/2;	 
	 return top;
	}
	
function left_centre(largeur)
	{	 
	 var left=(screen.width-largeur)/2;	 
	 return left;
	}
//################################################################################################

function printit()
	{
	 if (window.print)
	 	{
    	 window.print();
		}
	 else
		{
    	 var WebBrowser = '<OBJECT ID="WebBrowser1" WIDTH=0 HEIGHT=0 CLASSID="CLSID:8856F961-340A-11D0-A96B-00C04FD705A2"></OBJECT>';
		 document.body.insertAdjacentHTML('beforeEnd', WebBrowser);
    	 WebBrowser1.ExecWB(6, 2);//Use a 1 vs. a 2 for a prompting dialog box    Web
		 Browser1.outerHTML = "";
		}
	}
