// This is the Javascript Configuration File
// This file is set up ONCE at installation and is usually not changed

// Set up the name to appear in the title bar
var sitename="Loss Prevention Certification";

// Host location
var hostloc="http://www.losspreventioncertification.com";

// Secure Host location
var securehostloc="https://www.losspreventioncertification.com";

// Help email address
var helpEmail="help@losspreventioncertification.com";


// ********** TOP MENU BUTTONS *******************************
// Set up the main and highlight colors for the top menu buttons
var menuButtonColor = '#8FA3B6';
var menuButtonHighlightColor = '#FF0000';

// top drop-down menu
function WriteQuickMenu()
{
	document.write ('<select size="1" name="D1" class="quickmenu" onChange="if(this.selectedIndex!=0)self.location=this.options[this.selectedIndex].value">');
	document.write ('  <option selected>-- Quick Menu --</option>');
	document.write ("  <option value=" + hostloc + "/default.asp>Home</option>");
	document.write ("  <option value=" + hostloc + "/aboutus.htm>About us</option>");
	document.write ("  <option value=" + hostloc + "/contactus.htm>Contact us</option>");
	document.write ("  <option value=" + hostloc + "/questions.htm>Questions</option>");
	document.write ("  <option value=" + hostloc + "/support.htm>Support</option>");
	document.write ('</select>');
}	