<!--
 function changePage(pageLocation,frameLocation)
 {
        
        
        var placetoGo = null;
        if(pageLocation.charAt(pageLocation.length-1) != 'E')
        {
                window.open(pageLocation,frameLocation)
        }
        else
        {
                var placetoGo = pageLocation.substring(0,(pageLocation.length-1))
                parent.location = placetoGo;
        }
 }

if(document.images)  {	
	
	mission_off = new Image();mission_off.src='images/mission_off.gif';
	mission_on = new Image();mission_on.src='images/mission_on.gif';
	
	testimonials_off = new Image();testimonials_off.src='images/testimonials_off.gif';
	testimonials_on = new Image();testimonials_on.src='images/testimonials_on.gif';
	
	projects_off = new Image();projects_off.src='images/projects_off.gif';
	projects_on = new Image();projects_on.src='images/projects_on.gif';
	
	difference_off = new Image();difference_off.src='images/difference_off.gif';
	difference_on = new Image();difference_on.src='images/difference_on.gif';
	
	endorsements_off = new Image();endorsements_off.src='images/endorsements_off.gif';
	endorsements_on = new Image();endorsements_on.src='images/endorsements_on.gif';
	
	contact_off = new Image();contact_off.src='images/contact_off.gif';
	contact_on = new Image();contact_on.src='images/contact_on.gif';
}	       

function imgOn(name) { 
	if (document.images) {
		document.images[name].src = eval(name+"_on.src");
}}

function imgOff(name) { 
	if (document.images) {
		document.images[name].src = eval(name+"_off.src");
}}


var putItThere = null; 
var chasm = screen.availWidth;
var mount = screen.availHeight;
var w = 0;
var h = 0;

function deadCenter(page,name,w,h,scroll) {
  putItThere = window.open(page,name,'scrollbars=yes,width=' + w + ',height=' + h + ',left=' + ((chasm - w - 10) * .5) + ',top=' + ((mount - h - 30) * .5));
}
