// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
// Setup global path variables, no trailing slash needed, no slash if root only
function SetupPaths(){
    // ===== START USER DEFINED PATHS =====
    var Test = "No";
    if  (Test == "Yes"){
    	PerlRoot="/cgi-bin/dev/faos";	             // Path to where the Perl libraries are kept
    	WebRoot="/dev/faos";		                 // Path to the root of the website
    	DynImages=WebRoot+"/images/website/dynamic"; // Path to the dynamic images folder
    	Uploads=WebRoot+"/uploads";                  // Path to the uploads folder
        }
    else {
    	PerlRoot="/cgi-bin";	                      // Path to where the Perl libraries are kept
    	WebRoot="";		                              // Path to the root of the website
    	DynImages=WebRoot+"/images/website/dynamic";  // Path to the dynamic images folder
    	Uploads=WebRoot+"/uploads";                   // Path to the uploads folder
    // ===== END USER DEFINED PATHS =====
        }
    }
