
/***********************************************/
/* Author:			Jean-Christophe Zufferey   */
/* Last update:		09.05.02                   */
/***********************************************/

// This function is automatically executed after the calling page is loaded.
// It proposes to the visitor to display the EAST navigation bar if it is not already the case.
function onLoadDidel()
{
	
/*	if (window.parent)
	{
		if (!window.parent.sidebar)
		{
			if (confirm("WELCOME!\n\nThis page is part of the DIDEL SA web site. Do you want to display the navigation bar?\n\n\nBIENVENUE !\n\nCette page fait partie du site web de DIDEL SA. Voulez-vous afficher la barre de navigation ?"))
			{
				FilePath = location.pathname.substring(location.pathname.indexOf("didel.com/")+1, location.pathname.length);
				File = FilePath;
				Level = "";
				while (File.indexOf("/")!=-1)
				{
					File = File.substring(File.indexOf("/")+1, File.length);
					Level += "../";
				}
				location.replace(Level + "Frames.html?MainFrame=" + FilePath);
			}
		}
	}
	
*/
	
}