
<!--
//  Start of what was  onoff_new.js
function glWin(glUrl,glName,glFeatures)
	{
var xWin = window.open(glUrl,glName,'width=420,height=500,resizable,scrollbars,alwaysRaised,dependent,screenX=1,screenY=1')
	}

function CKLSTisBlank() {
value=document.forms[1].elements['sp-q'].value;

if ( value == "" ){
        alert("You did not enter a search term. Please try again.");
        return false;
    }
    else {
    return true;
    }
}

function isBlank() {
value=document.forms[0].elements['sp-q'].value;

if ( value == "" ){
        alert("You did not enter a search term. Please try again.");
        return false;
    }
    else {
    return true;
    }
}


// Open Source: JavaScript Library: Safe Mail
// Author(s):   FakeTP: faker@faketp.com, http://www.faketp.com/safemail/
//              Michael Stilson Jr. - Western Michigan University
// Args In:  username, domain, subject, anchor (optional) and markup (optional)
// Pre:      username: a string that defines a valid email address username. 
//	e.g.	<script>safemail("firstname.lastname","wmich.edu","subject","Anchor Text")</script>
//		domain:   a string that defines a valid email address domain
//		subject:   optional string defines subject text ( uses page title if blank - DSF 3-2004)
//		anchor:   a (n optional) string that defines the anchor text
//		markup:   a (n optional) boolean that flags a markup

var gBLANK="";
var gHTML_A_CLOSE="</a>";
var gHTML_GREATER="&gt;";
var gHTML_LESSER="&lt;";
var gHTML_A_HREF0="<a href=\"mailto:";
var gHTML_A_HREF1="\">";
var gSTR_AT="@";
var gSTR_GREATER=">";
var gSTR_LESSER="<";
var gSTR_SUBJECT="?subject=";
var gSTR_SPACE=" ";
var gSTR_UNDEF="undefined";
var gTYPE_BOOLEAN="boolean";
var gTYPE_STRING="string";

function safemail(username,domain,subject,anchor,markup) {
	if(arguments.length<3) return 0;
	if(arguments.length==3) {
		for(var i=0;i<3;i++) {
			if((typeof arguments[i])!=gTYPE_STRING) return 0;
		}
	}
	var isAnchor=true;
	var isMarkup=false;
	if(arguments.length>3) {
		for(var i=3;i<arguments.length;i++) {
			var argType=typeof arguments[i];
			if(argType==gTYPE_BOOLEAN) {
				if(i==3) {
					anchor=null;
				}
				isMarkup=true;
			}
		}
	}
	if((typeof(anchor)==gSTR_UNDEF)||(anchor==null)) {
		var anchor=username+gSTR_AT+domain;
		isAnchor=false;
	}
	var href=username+gSTR_AT+domain;
	if(subject="") {
		var subject="Email from "+document.title;
	}
	if(isAnchor) {
		var safeAnchor=
		gHTML_A_HREF0+anchor+gSTR_SPACE+gSTR_LESSER+href+gSTR_GREATER+gSTR_SUBJECT+subject+gHTML_A_HREF1+anchor+gHTML_A_CLOSE;
	} else {
		var safeAnchor=
		gHTML_A_HREF0+href+gSTR_SUBJECT+subject+gHTML_A_HREF1+anchor+gHTML_A_CLOSE;
	}
	if(isMarkup) safeAnchor=gHTML_LESSER+safeAnchor+gHTML_GREATER;
	document.write(safeAnchor);
return 1;
}

// Copyright 2004 - Western Michigan University - All rights reserved
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions
// are met:
// 1. Redistributions of source code must retain the above copyright
//    notice, this list of conditions and the following disclaimer.
// 2. Redistributions in binary form must reproduce the above copyright
//    notice, this list of conditions and the following disclaimer in the
//    documentation and/or other materials provided with the distribution.
//
// THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ''AS IS'' AND
// ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
// ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
// FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
// DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
// OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
// HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
// LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
// OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
// SUCH DAMAGE.

// End of what was onoff_new.js


// Start of what was    header_new.js
document.write("<LINK REL=\"SHORTCUT ICON\" HREF=\"http://www.wmich.edu/evalctr/favicon.ico\">")
document.write("</head>")
document.write("<body><div ID=\"dek\"></div>")
document.write("<a name=\"top\"></a>")
document.write("<table border=0 cellpadding=0 cellspacing=0 align=\"left\">")
document.write("<tr>")
document.write("<td valign=top align=\"left\">")
document.write("<img src=\"../imgs/EvalCtrMast.jpg\" width=769 height=74 alt=\"The Evaluation Center\" vspace=0 hspace=0 align=\"left\"><br clear=\"all\">")
document.write("<script type='text/javascript'>")
document.write("function Go(){return}")
document.write("</script>")
document.write("<script type='text/javascript' src='../js/ecmenu_org.js'></script>")
document.write("<script type='text/javascript' src='../js/menu_com.js'></script>")
document.write("<noscript>Your browser does not support javascript; page menus will not work. Either enable javascript in your preferences or use the site index page to navigate.")
document.write("</noscript>")
document.write("<br clear=\"all\">")
document.write("</td></tr></table>")

// End of what was    header_new.js



//Breadcrumbs trail functions
function spawn(expr,qty,reversed){
	var spawnee=[expr];
	for(s=1;s<qty;s++){
		spawnee[s]=expr+spawnee[s-1];
	}
	return reversed? spawnee.reverse() : spawnee();
}

function mw_crumbs(divider,default_page,root,indexPage){
	if(!divider) {divider="<b class=dot> : </b>"}
	if(!default_page){default_page="index.html"}
	var m=location.toString(),h="";
	
	offset=m.lastIndexOf("/")
	var index_implied=1
	
	var index_Page=1
	if(offset!=m.length-1){
		var index_implied=0
		if(m.indexOf("index.html")==-1 && m.indexOf("index.htm")==-1 ) {
			var index_Page=0
		}
	}
	
	m=m.substring(m.indexOf("/")+1);
	

	m=m.split("/");

	var m_length=m.length
	if(index_implied==1){
		var m_length=m.length+1
	}

//  4 instances of m.length changed to m_length 185 - 199

	var howmany=spawn("../",m_length,true);

	howmany[m_length]=default_page;

	var lenAdjust=1
	if (index_Page==1) {
		lenAdjust=2
	}

	/* line below changed from length-1; */
	for(i=1;i<m_length-lenAdjust;i++){
		h+=("<a target=\"_top\" href="+howmany[i+2]+">"+unescape( m[i]+"</a>"+divider))
	}


	/*
	var sTemp="";
	var lenTemp=m.length-1;
	sTemp= m.4;
	return sTemp;
	sTemp=sTemp.substring(5)
	if(sTemp == "index") {
		h+=("<a href="+howmany[i+2]+">"+unescape( m[length-1]+"</a>"+divider))
	}
	*/

	h += document.title;

	if(root) {
		h=h.replace(eval("/"+location.host+"/"),root)
	}
	h=h.replace(eval("/evalctr/"),"EC Home")
	h=h.replace(eval("/mts/"),"MTS Project")
	h=h.replace(eval("/2003institute/"),"2003 Institute")
	h=h.replace(eval("/2004institute/"),"2004 Institute")
	h=h.replace(eval("/pubs/"),"EC Publications")
	h=h.replace(eval("/papers/"),"Checklist Papers")
	h=h.replace(eval("/checklists/"),"Checklists")
	h=h.replace(eval("/ops/"),"Occasional Papers")
	h=h.replace(eval("/review/"),"Checklist Reviewer Information")
	h=h.replace(eval("/bib/"),"Bibliographies")
	h=h.replace(eval("/evalcafe/"),"Evaluation Caf&eacute;")
	h=h.replace(eval("/ess/"),"ESS")
	h=h.replace(eval("/intern/"),"MTS Internship")
	h=h.replace(eval("/glossary/"),"Glossary")
	h=h.replace(eval("/rapides/"),"Rapides Foundation SIE")
	return h
}

// End of what was    bcTrail.js




// Start of what was    bc-atomz-index.js

var subDirQuery=''
document.write("<br clear=\"all\"><form method=\"get\" action=\"http://search.atomz.com/search/\" onsubmit=\"return isBlank();\" target=\"_blank\"><table class=body cellpadding=\"5\" cellspacing=\"0\"><tr bgcolor=\"#CBC1B0\"><td align=\"left\" valign=\"bottom\">&nbsp;<span class='bcTrail'>" + mw_crumbs("<b>&nbsp;&nbsp;>&nbsp;&nbsp;</b>","index.html","WMU",false) + "</span></td><td align=\"right\" valign=\"bottom\"><input type=hidden name=\"sp-not-found-page\" value=\"http://www.wmich.edu/evalctr/siteindex.html\"><input type=hidden name=\"sp-a\" value=\"000923e1-sp00000000\">&nbsp;<a href=\"http://www.wmich.edu/evalctr/search.html\" title=\"Search Help And Advanced Search\"><span class=\"b-red\">?</span></a>&nbsp;<input maxlength=800 size=16 name=sp-q><input type=image border=0 alt=\"Search The Evaluation Center\" name=\"Search The Evaluation Center\" src=\"../imgs/search0.jpg\" align=\"center\"></td></tr></table></form><table class=\"w769\"><tr>")

// End of what was    bc-atomz-index.js


// Start of what was    mouseover.js

Xoffset=100;    // modify these values to ...
Yoffset= -40;    // change the popup position.
var old,skn,iex=(document.all),yyy=-1000;

var ns4=document.layers
var ns6=document.getElementById&&!document.all
var ie4=document.all

if (ns4)
skn=document.dek
else if (ns6)
skn=document.getElementById("dek").style
else if (ie4)
skn=document.all.dek.style
if(ns4)document.captureEvents(Event.MOUSEMOVE);
else{
skn.visibility="visible"
skn.display="none"
}
document.onmousemove=get_mouse;

function popup(msg,bak){

var content="<TABLE WIDTH=280 BORDER=1 BORDERCOLOR=#dad592 CELLPADDING=2 CELLSPACING=0 "+
"BGCOLOR="+bak+"><TD ALIGN=left><FONT FACE='Verdana, Arial, Helvetica, sans-serif' COLOR=black SIZE=2>"+msg+"</FONT></TD></TABLE>";
yyy=Yoffset;
 if(ns4){skn.document.write(content);skn.document.close();skn.visibility="visible"}
 if(ns6){document.getElementById("dek").innerHTML=content;skn.display=''}
 if(ie4){document.all("dek").innerHTML=content;skn.display=''}
}

function get_mouse(e){
var x=(ns4||ns6)?e.pageX:event.x+document.body.scrollLeft;
skn.left=x+Xoffset;
var y=(ns4||ns6)?e.pageY:event.y+document.body.scrollTop;
skn.top=y+yyy;
}

function kill(){
yyy=-1000;
if(ns4){skn.visibility="hidden";}
else if (ns6||ie4)
skn.display="none"
}

// End of what was    mouseover.js



// End hiding
-->
