* Absolute path with Apache and php when you run application in local to explore your disk :

 - In diaporama.svg :
	function load_diaporama()
	{
		default_dir = "Program Files/EasyPHP1-7/www/diaporama/examples/"
		add_filesystem('svg/file_system.svg','outil',dialog[16],'dia','',0)
	}

	function add_music()
	{
		default_dir = "Program Files/EasyPHP1-7/www/diaporama/music/"
		add_filesystem('svg/file_system.svg','outil',dialog[17],'mp3;wav;MP3;WAV','',2)
	}

	You can modify this strings if you have not this tree.

* Absolute URL ( with Windows XP SP2 to open popup ) suppose that SVGDiaporama is in www/diaporama

 - In diaporama.svg :

	function open_view_window(view_file)
	{
  	 var 	param = "width=" + (tr_width + 40).toString() +",height=" + (tr_height + 70).toString() + ",toolbar=no,menubar=no,location=no,scrollbars=no,resize=no,minimize=no";
		open("http://" + svgdoc.domain + "/diaporama/" + view_file,"",param)
	}

	function help()
	{
		open("http://" + svgdoc.domain + "/diaporama/localisation/" + language + "/help.htm","","width=700,height=500,toolbar=no,menubar=no,location=no,scrollbars=yes,resize=yes,minimize=yes")
	}

* You can add new languages :

 - Create by example directory

	localisation/spanish/

 - Put in this directory files *.txt translated in chosen language
	
	dialog.txt / fonts_dialog.txt / fonts_interface.txt / interface.txt / 
	mini_popup.txt / palette_dialog.txt / palette_interface.txt / popup.txt / tooltip.txt 

 - Put file help.htm also translated with images subdirectory

 - In diaporama.svg : 

	Add by example spanish in languages
		var languages = "english;french;spanish"
 

 - To run application in spanish
	
	add to URL parameter    diaporama.svg?l=spanish
	