

// if this page is in:
// the root folder, then set this variable to ./
// a sub folder one level deep, then set this variable to ../
// a sub folder two levels deep, then set this variable to ../../


var rootFlashLocation = "../../";



// 0 == off, 1 == on


var playMusic = 1;



// -1 = always display, 0 = never display, and any other positive integer = the number of times to display the intro sequence
// Note: Cookies will not work on pages saved on your local computer.
// To test the cookied function, you must publish the page out to your web server and test it from your http:// website


var maxIntroViews = -1;


// 0 == no, 1 == yes -- persistant means it will save even after the user closes their browser


var isPersistantCookie = 1;


function FP_popUpMsg(msg) {//v1.0

alert(msg);

}


