function popupContact(a,b,c,d,e,f) {
	window.open('show_contact.html?id='+d+a+f+b+'&type='+c+'&lang='+e,'', 'top=50, left=50, width=750, height=580, resizable=yes, toolbar=no, scrollbars=yes, status=no');
}

function popupSmileys (src) {
	window.open(src,'', 'top=20, left=20, width=220, height=360, resizable=yes, toolbar=no, scrollbars=yes, status=yes');
}

function popupMessage (src) {
	window.open(src,'', 'top=20, left=20, width=600, height=445, resizable=yes, toolbar=no, scrollbars=yes, status=yes');
}

function popupSupprimer (src) {
	window.open(src,'', 'top=20, left=20, width=740, height=400, resizable=yes, toolbar=no, scrollbars=yes, status=yes');
}

function popupEditer (src) {
	window.open(src,'', 'top=20, left=20, width=740, height=400, resizable=yes, toolbar=no, scrollbars=yes, status=yes');
}

function popupAbus (src) {
	window.open(src,'', 'top=20, left=20, width=740, height=450, resizable=yes, toolbar=no, scrollbars=yes, status=yes');
}

function go2url(sel, targetstr)
{
  var index = sel.selectedIndex;
  if (sel.options[index].value != '') {
     if (targetstr == 'blank') {
       window.open(sel.options[index].value, 'win1');
     } else {
       var frameobj;
       if (targetstr == '') targetstr = 'self';
       if ((frameobj = eval(targetstr)) != null)
         frameobj.location = sel.options[index].value;
     }
  }
}

function show_list(value)
{
	var choix = document.getElementById("origin");

	if(choix.value == value)
	{
		document.getElementById("list").style.display = "block";
	}
	else
	{
		document.getElementById("list").style.display = "none";
	}
}