
function escp(n)
{
	for (var i=0;i<n.length;i++)
	{
		document.write(i+":"+ n.charAt(i) + " code:" +n.charCodeAt(i) );
		document.write("<br>");
	}
}  


function writeE(n) {	
	n=escape(n);
	var d= "uic.edu";

	document.write('<a href="mai');
	document.write('lto:'+n+'@');
	document.write(d+'">');
	document.write(n+'@');
	document.write(d);
	document.write('</a>')
}


function setFooterTop()
{
	var intElemOffsetHeight = document.getElementById('content').offsetHeight;
	var footer = document.getElementById('footer');
	var t=intElemOffsetHeight + 131;
	footer.style.top= t+"px";

}


function writeHeader()
{
document.write(" ");
document.write('	<div id="header">');
document.write('		<img src="images/centersm.jpg" align="top" border="0" height="131" width="168">'); 
document.write('		<div id="banner">');
document.write('<img src="images/uic_logo_full_blue.gif"');
/*document.write('			<h1>University of Illinois at Chicago</h1>');*/
document.write('		</div>');
/*document.write('		<div id="title">');*/
document.write('			<br><h2>Center for Research on Women and Gender</h2>');
/*document.write('		</div>');*/
document.write('	</div>');
}

function writeNav()
{
document.write('	<div id="leftcol">');
document.write('		<ul class="nav">');
document.write('			<li><a class="navlink" href="./index.htm">CRWG Home</a></li>');
document.write('			<li><a class="navlink" href="./whoweare.htm">Who We Are</a></li>');
document.write('			<li><a class="navlink" href="./whatwedo.htm">What We Do</a></li>');
document.write('			<li><a class="navlink" href="./newsletters.htm">Newsletters</a></li>');
document.write('			<li><a class="navlink" href="./publications.htm">Publications</a></li>');
document.write('			<li><a class="navlink" href="./calendar.htm">Calendar</a></li>');
document.write('			<li><a class="navlink" href="./links.htm">Links</a></li>');
document.write('			<li><a class="navlink" href="./give.htm">Give to CRWG</a></li>');
document.write('			<li><a class="navlink" href="http://www.uic.edu/">UIC Home</a></li>');
document.write('		</ul>');
document.write('<form action="./search.htm" id="cse-search-box">');
/*document.write('  <div>');*/
document.write('    <input type="hidden" name="cx" value="002651420950560412449:scixecd3ibq" />');
document.write('    <input type="hidden" name="cof" value="FORID:11" />');
document.write('    <input type="hidden" name="ie" value="UTF-8" />');
document.write('    <input type="text" name="q" size="20" />');
document.write('    <input type="submit" name="sa" value="Search CRWG" />');
/*document.write('  </div>');*/
document.write('</form>');
document.write('<script type="text/javascript" src="http://www.google.com/coop/cse/brand?form=cse-search-box&lang=en"></script>');

document.write('  </div>');
}

function writeFooter()
{
document.write('	<div id="footer">');
document.write('		<p>');
document.write('			Center for Research on Women and Gender (M/C980)<br>');
document.write('			1640 W. Roosevelt Rd, Room 503 <br>');
document.write('			Chicago, IL 60608-6900 <br>');
document.write('			Telephone (312) 413-1924 <br>');
document.write('			Fax (312) 413-7423 <br>');
document.write('			Contact us at <a href="mailto:CRWGweb@uic.edu">CRWGweb@uic.edu </a>');
document.write('		</p>');
document.write('	</div>');
setFooterTop();
}
