/**
 * fonction 21 Mai 2001 Version 1.0
 * Alain Gayrard 
 * Copyright (c) Formedialine SA
 *
 */

function fen_conv_fr(montant)
{
var fenetre=window.open ("","Francs","height=40,width=200,toolbar=no,menubar=no,location=no");
var valeur = (montant * 6.55957)*100;
fenetre.moveTo ((screen.width - 200)/2,(screen.height - 40)/2);
valeur  = Math.round(valeur)/100
fenetre.document.write ("<div align='center'> " + montant + " &euro; => " + valeur + "  FRF</div>");
fenetre.document.bgColor="#FFCC66";
fenetre.setTimeout("window.close()", 3000);
} 

function fen_message(numero)
{
var fenetre=window.open ("","Commentaire","height=100,width=300,toolbar=no,menubar=no,location=no");
var messsage;
switch (numero)
{
case 1:
{
message = "FORMEDIALINE a signé la convention avec un client, et héberge son stagiaire dans votre organisme de formation."
break;
}
case 2:
{
message = "Votre organisme a signé la convention avec le client et sous-traite la formation à FORMEDIALINE."
break;
}
}
numero = 1
fenetre.moveTo ((screen.width - 300)/2,(screen.height - 40)/2);
fenetre.document.write ("<div align='center'> "+ message + "</div>");
fenetre.document.bgColor="#FFCC66";
fenetre.setTimeout("window.close()", 7000);
} 
