

var xmlHTTP2=null;
var xmldoc2 = new Object;
var footerText = "<p align='center' class='footer1' > To contact us: <br><br>Gender Equity Project <br>Department of Psychology <br>Hunter College of the City University of New York <br>695 Park Avenue <br>New York, NY 10065 <br><br>E-Mail: <a href='mailto:gender.equity@hunter.cuny.edu' class='links12graybold'>gender.equity@hunter.cuny.edu</a><br>Phone: 212-650-3001 Fax: 212-650-3247</p><p align='left' class='footer1'> &copy;&nbsp;&nbsp;2005 GenderEquity Project This material is based upon work supported by the National Science Foundation under Grant No. 0123609 [ ADVANCE Institutional Transformation Award ] and by Hunter College of the City University of New York. Any opinions, findings, and conclusions or recommendations expressed in this material are those of the author and do not necessarily reflect the views of the National Science Foundation. <br> </p> <p align='left' class='footer1'>This website was created and designed by Monica Hopenwasser and Jocelyn Tan with assistance from Elizabeth Lattanzio.</p>";

function GetXmlHttpObject(){
	try{    
    		xmlHTTP = new XMLHttpRequest();
	}catch (e){
		try{      
    			xmlHTTP = new ActiveXObject("Msxml2.XMLHTTP");
		}catch (e){
			xmlHTTP = new ActiveXObject("Microsoft.XMLHTTP");
		}
  }
  return xmlHTTP;  
}

function getMenu(){
	xmlHTTP2=GetXmlHttpObject();
	if (xmlHTTP2==null){
  		alert ("Your browser does not support AJAX!");
  		return;
  	}else {
  	}
	url2= "GEPmenu.html";
	xmlHTTP2.onreadystatechange=menuPrint;
	xmlHTTP2.open("GET",url2,true);
	xmlHTTP2.send(null);
}
function menuPrint(){
	if (xmlHTTP2.readyState == 4) {
		if (xmlHTTP2.status == 200) {
			xmldoc2 = xmlHTTP2.responseText;
			
			document.getElementById('mainNav').innerHTML = xmldoc2;
			document.getElementById('myFooter').innerHTML = footerText;

		} else {
            		alert('There was a problem with the request.');
		}
	}else{
		
	}
}
