/* forum.js
 * Version 2.4 - 14/10/2010
 * Role : scripts pour le forum
 * Projet : The Web Language Lab 
 * Auteur : Etienne CHEVILLARD
 */

var urlForum = "http://cgi00.unetun.com/cgi-bin/fo?clsid=f02f932a2f9168caffa0de730de64e94";

// insere un objet IFRAME pour le forum unetun.com
function insererForum() {
  var txt;
  txt = "<iframe id='forum' width='620' height='455' frameborder='0' ";
  txt += "marginwidth='0' marginheight='0' src='";
  txt += urlForum;
  txt += "'></iframe>";
  return (txt);
} // fin insererForum()

