<!--   ex: <a href="#" onClick="javascript:openwin('LIEN',largeur,hauteur);">TEXTE LIEN</a> -->
var mypopup=null;
function openwin(lien,w,h)
{
	/********************** stop la video des news ************************/
	if(document.getElementById('mpl')!= undefined){ document.getElementById('mpl').sendEvent('STOP');}
		
	var top=(screen.height-h)/3;
	var left=(screen.width-w)/2;
	var option='width='+ w +',height='+ h +',top='+top+',left='+left+',toolbar=no, menubar=no, scrollbars=yes, resizable=no, location=no, directories=no, status=no';
	if (window.mypopup) { window.mypopup.close();}
	mypopup=window.open(lien,"pop",option);
	mypopup.focus();
}


function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}