<!-- Begin

/*
	This code is for the web page to locate required code,
	no matter which sub folder the web page resides in.
*/

// Declare the variable
var dom;

// NOTE 1: If you use a ' add a slash before it like this \' 

// NOTE 2: To disable a line of code, place 2 back slashes at
// the beginning of the line; i.e. //
// To enable a line of code, remove the 2 back slashes at
// the beginning of the line

// NOTE 3: Enable this line of code before uploading the file to the development server
// After the pages are tested on the development server, disable this line and enable the line in Note 4.
// Disable this line of code to build web pages on PC
//dom = 'http://wwwdev.mfr.usmc.mil/4thmaw/MWSG47/MWSS473/DetA/';

// NOTE 4: Enable this line of code before uploading the file to the production server
// Disable the line of code in Note 3 before uploading to the production server
// Disable this line of code to build web pages on PC
//dom = 'http://www.mfr.usmc.mil/4thMAW/MWSG47/MWSS473/DetA/';

// NOTE 5: Enable this line of code to build web pages on PC
// Disable this line of code before uploading the file to the server
// To set this line correctly:
//	1. Open the file, 'template.htm' in a web browser
//	2. Copy the address string in the browser address bar
//	3. Paste the address in the line of code below
//	4. Delete the file name 'template.htm' from the line of code
//	5. Reverse forward slashes '\' to a back slash '/'
//	6. Save the file
dom = 'http://www.mfr.usmc.mil/4thmardiv/24thmar/';


//  End -->