
function OpenWin(URL,width,height,nom)
{
	window.open(URL,nom,"toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,width=" + width + ",height=" + height + ",resizable=no");
}

function OpenWin2(URL,width,height,nom)
{
	window.open(URL,nom,"toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,width=" + width + ",height=" + height + ",resizable=yes");
}


function Deplacer(l1,l2) {
		if (l1.options.selectedIndex>=0) {
			o=new Option(l1.options[l1.options.selectedIndex].text,l1.options[l1.options.selectedIndex].value);
			l2.options[l2.options.length]=o;
			l1.options[l1.options.selectedIndex]=null;
			l2.options[l2.options.selected]=true;
		}else{
			alert("Aucun joueur sélectionné");
		}
	}



function SelectionnerItems(form) {

zl = "j_convoc[]";
lg = document.entryform.elements[zl].options.length;

for (cpt = 0; cpt < lg; cpt++) {
document.entryform.elements[zl].options[cpt].selected = true;
}

}


