// JavaScript Document


		<!--
			menu_array = new Array();
			menu_array[0] = "ddnav1";
			menu_array[1] = "ddnav2";
			menu_array[2] = "ddnav3";
			
			var isactive = false;
			var glo_obj = "";
			var htimer;
			
			function showhide(obj,onlink) 
			{
				// put the current object (menu) into a variable.
				target_obj = document.getElementById(obj).style;

				// put the current object into the glo_obj variable for later use.
				glo_obj = obj; 

				// If the user has triggered with an onmouseowver,
				if (onlink)
				{
					// clear the hide timer
					clearTimeout(htimer);
					// loop through the menu objects, and hide them all.
					for (i=0; i < menu_array.length; i++)
					{
						// Put the current array item into the variable temp_obj
						temp_obj = document.getElementById(menu_array[i]).style;
						temp_obj.visibility = "hidden";
					}
					// turn the current menu visible, then set the isactive variable to true.
					target_obj.visibility = "visible";
					isactive = true
				}

				// If the user triggered with an onmouseout, 
				if (!onlink)
				{
					// the layer is no longer active.
					isactive=false;
					// call the layerTimer function, which hides the layer.
					layerTimer();
				}
			}
			
			function layerCheck(flag) 
			{
				// If the user is over the layer.
				if (flag) 
				{
					// Then the layer is active
					isactive = true;
					// clear the timer
					clearTimeout(htimer);

				}
				else 
				{
					// The layer is not active.
					isactive = false;
					// Call the layerTimer function.
					layerTimer();
				}
			}
			function layerTimer() 
			{
				htimer = setTimeout("hideMenu()",1000);
			}
			function hideMenu() {
				// If the layer is not active
				if (!isactive) 
				{
					// get the element, previously set as "glo_obj" by its ID and put into a variable
					target_obj = document.getElementById(glo_obj).style;
					// Hide the object.
					target_obj.visibility = "hidden";
				}
			}
		
		
			
	
		
function passWord() {
var testV = 1;
var pass1 = prompt('Enter Password',' ');
while (testV < 3) {
if (!pass1) 
history.go(-1);
if (pass1.toLowerCase() == "ischemix") {
window.open('secure.html');
break;
} 
testV+=1;
var pass1 = 
prompt('Access Denied - Password Incorrect, Please Try Again.','Password');
}
if (pass1.toLowerCase()!="password" & testV ==3) 
history.go(-1);
return " ";
} 



function TheLogin(form) {

var password = '1schemix2b';

if (this.document.login.pass.value == password) {
  //top.location.href="secure.html";
  form.submit();
}
else {
  location.href="index.html";
  }
}




 //-->


