<!-- Begin

// This is the image mouseover script
function msover(doc_item,textimage)
    {document[doc_item].src=textimage;}

//This is the new window script
function OpenWin(theURL,winName,features) 
    {window.open(theURL,winName,features);}
    
//This removes the link border on images
function RemoveDot()
{
for (a in document.links) document.links[a].onfocus = document.links[a].blur;
}
if (document.all)
{
document.onmousedown = RemoveDot;
}
file:

//  End -->

<!-- Begin
//This is the menu fade-in fade-out script
menufadeObjects = new Object();
menufadeTimers = new Object();

function menufade(object, destOp, loopdelay, changepercentage){
if (!document.all)
return
    if (object != "[object]"){  //do this so I can take a string too
        setTimeout("menufade("+object+","+destOp+","+loopdelay+","+changepercentage+")",0);
        return;
    }
        
    clearTimeout(menufadeTimers[object.sourceIndex]);
    
    diff = destOp-object.filters.alpha.opacity;
    direction = 1;
    if (object.filters.alpha.opacity > destOp){
        direction = -1;
    }
    changepercentage=Math.min(direction*diff,changepercentage);
    object.filters.alpha.opacity+=direction*changepercentage;

    if (object.filters.alpha.opacity != destOp){
        menufadeObjects[object.sourceIndex]=object;
        menufadeTimers[object.sourceIndex]=setTimeout("menufade(menufadeObjects["+object.sourceIndex+"],"+destOp+","+loopdelay+","+changepercentage+")",loopdelay);
    }
}
// End -->
<!-- Begin
function ValidateForm(myForm) {
	var validate = true;
	var el; var firstEl;
	
	for(i=0; i < myForm.length; i++) {
		el = myForm.elements[i];
		if (el.className.indexOf('required') != -1) {
			if(el.value == '') {
				// set the background color and set validate to false
				var old_color = el.style.backgroundColor;
				el.style.backgroundColor = '#FFFFCF';
				el.onblur = function() {
					if(this.value != '') {
						this.style.backgroundColor = old_color;
					}
				}
				validate = false;
				
				// if this is the first one, focus on it (later)
				if(firstEl == null) {firstEl = el;}
			}
		}
	}
	
	if(validate) {
		return true;
	} else {
		alert("Please fill in all required fields");
		firstEl.focus();
	}
	return false;
}
//  End -->