var wndPwd=null;
function showPwd(url)
{
  var width,height,couleurFond,fond,couleurTexte,typePolice,tailleCaracteres;
  width=625; height=300;
  LeftPosition=(screen.width)?(screen.width-width-10):100;
  TopPosition=0;
  wndPwd = window.open(url,'pwd','top='+TopPosition+',left='+LeftPosition+',toolbar=no,location=no,directories=no,status=no,scrollbars=no,menubar=no,resizable=yes,copyhistory=no,width='+width+',height='+height+'');
  if (wndPwd.focus)
	wndPwd.focus();
  return false;
}

var wndHelp=null;
function showHelp(message)
{
  var url,width,height,couleurFond,fond,couleurTexte,typePolice,tailleCaracteres;
  url = '';
  width = 505; height = 200;
  couleurFond = '#FAF7C0';
  fond = '';
  couleurTexte = '#000000';
  typePolice = 'Times New Roman';
  tailleCaracteres = 3;

  openWindow(url,width,height,message,couleurFond,fond,couleurTexte,typePolice,tailleCaracteres)
}

function CloseWindow()
{
	if(wndHelp!=null && wndHelp.open)
		wndHelp.close()
	if(wndPwd!=null && wndPwd.open)
		wndPwd.close()
}
window.onfocus=CloseWindow;

function openWindow(url,width,height,message,couleurFond,fond,couleurTexte,typePolice,tailleCaracteres)
{
  wndHelp = window.open(url,'help','toolbar=no,location=no,directories=no,status=no,scrollbars=yes,resizable=yes,copyhistory=no,width='+ width +',height='+ height+'');

  var texte = '<' + 'HTML' + '><' + 'HEAD' + '><' + 'TITLE' + '>EKKO</' + 'TITLE' + '><' + '/HEAD' + '><' + 'BODY BACKGROUND=' + '"' + fond + '"' + ' BGCOLOR=' + '"' + couleurFond + '">';
  texte += '<CENTER>';
  texte +='<FONT FACE="' + typePolice +'"';
  texte += ' SIZE=' + tailleCaracteres; 
  texte += ' COLOR=' + '"' + couleurTexte +'">';
  texte += message + '</CENTER></FONT>';
//  texte += '<A HREF="javascript: self.close()"><FONT SIZE=1 FACE="Arial,Geneva,Helvetica">[Fermer la fenêtre]</FONT></A>'
  texte += '</' + 'BODY' + '><' + '/HTML' + '>';
  wndHelp.document.write(texte);
  if(wndHelp.focus)
	wndHelp.focus();
  wndHelp.document.close();
  return false;
}

function openURL(title,width,height,url)
{
  LeftPosition=0;
  TopPosition=0;
  wndHelp = window.open(url,title,'top='+TopPosition+',left='+LeftPosition+',toolbar=yes,location=no,directories=no,status=no,scrollbars=yes,menubar=no,resizable=yes,copyhistory=no,width='+width+',height='+height+'');
  if (wndHelp.focus)
	wndHelp.focus();
  return false;
}
