function PopupCentrer(page,largeur,hauteur,options) {
  var top=(screen.height-hauteur)/2;
  var left=(screen.width-largeur)/2;
  window.open(page,"","top="+top+",left="+left+",width="+largeur+",height="+hauteur+","+options);
}

function go(formref)
{
  elem = document.all.countryform.country.options;
  index = document.all.countryform.country.selectedIndex;
  formref.country.value=elem[index].value;
  //  alert(formref.country.value);
  formref.submit();
}

function checkit($name)
{
	elem = eval("document.export_form."+$name);
	if (elem.checked == true)
		elem.checked = false;
	else
		elem.checked = true;
}


function set_mouseout(obj)
{
	obj.style.borderBottom='solid 1px #FFFFFF';
	obj.style.borderLeft='solid 1px #FFFFFF';
}

function set_mouseover(obj)
{
	obj.style.borderBottom='solid 1px #A0A0A0';
	obj.style.borderLeft='solid 1px #A0A0A0';
}