// JavaScript Document

<!-- Code for implementing "audiofunction" PARAM - may be deleted if "logo_code" option not used --->

function welcome()
{
   win = open("welcome.htm","audio","resizable=yes,width=140,height=100");  
   win.moveTo(25,25);
}

<!-- End code for implementing "audiofunction" PARAM  -->


<!-- Code for implementing Popup windows - these functions can be deleted if you are not using this option -->

function area1()
{
   win = open("area1.htm","win1","resizable=yes,scrollbars=0,WIDTH=650,HEIGHT=500");
   win.moveTo(75,25);
}

function area2()
{
   win = open("area2.htm","win2","resizable=yes,scrollbars=0,WIDTH=650,HEIGHT=500");
   win.moveTo(75,25);
}

<!-- END code for implementing Popup windows  -->

<!-- Code for Java/JavaScript communication - delete ONLY if using Java buttons instead of JavaScript buttons -->

function actionPerformed(str)
{
   document.applets[0].javaScript(str);
}

<!-- END code for Java/JavaScript communication -->
function open_pop(Ho, La, Fichier)
{
	w = open (Fichier,"","height="+Ho+", width="+La+", scrollbars=yes");
}
function popupcentree(page,largeur,hauteur,options)
{
var top=(screen.height-hauteur)/2;
var left=(screen.width-largeur)/2;
window.open(page,"","top="+top+",left="+left+",width="+largeur+",height="+hauteur+","+options);
}