<!-- 0_SCRIPTS.JS-->
<!-- chubert@cyberstudio.fr-->
<!--  17 01 2000 -->


<!--

function openWin(url, nom, w, h)
{
        var MinWin, winOpts="width=" + w + ",height=" + h + ",resizable=yes,scrollbars=no,menubar=no";
        
	if (url == '') alert("L'Url n'est pas renseignee");
	else 
	{
	        MinWin = window.open(url, nom, winOpts);

		if (navigator.appVersion.indexOf("MSIE 3") == -1) 
		{
			MinWin.focus();
		}
	}
}

function valeur_select(nav, loc)
// nav : nom de la form
// loc : nom du select dans la form
// retourne la valeur du select
{
	theSelect = eval('document.'+nav+'.elements[loc]');

	var theOptions = theSelect.options;
	var thevalue = theOptions[theSelect.selectedIndex].value;

	return thevalue;
}




function mOver(nom,i){
  if (document.images && loaded == 1){
    document['img_'+nom+'_'+i].src=eval(nom+"_on"+".src");
  }
}

function mOut(nom,i){
  if (document.images && loaded == 1){
    document['img_'+nom+'_'+i].src=eval(nom+"_off"+".src");
  }
}


//-->
