// JavaScript Doc contains DATE, BOTTOM NAVIGATION, TOP NAVIGATION, ADDRESS & DISCLAIMER  

/********************************************************
* TOP PAGE PRESENT DATE
********************************************************/
var d=new Date();
var monthname=new Array("January","February","March","April","May","June","July","August","September","October","November","December");
//Ensure correct for language. English is "January 1, 2006"
var TODAY = monthname[d.getMonth()] + " " + d.getDate() + ", " + d.getFullYear();
//-->


/********************************************************
* BOTTOM NAVIGATION
********************************************************/
function bottomNav() {
document.write('<div id="bottom" align="center" valign="middle">');
document.write('<a href="index.html">Home</a>&nbsp;|&nbsp;<a href="http://www.ed.gov/about/offices/list/oese/ome/index.html" target="blank">OME</a>&nbsp;|&nbsp;<a href="http://www.mercweb.org/Default.aspx" target="blank">MERC</a>&nbsp;|&nbsp;<a href="calendar.html">Calendar</a>&nbsp;|&nbsp;<a href="contact.html">Contact Us</a>');


}
/********************************************************
* TOP NAVIGATION
********************************************************/
function topNav() {
document.write('<div id="top" align="right">');
document.write('<a href="hist_resources.html">Historical Resources</a>&nbsp;|&nbsp;<a href="about.html">About ConQIR</a>&nbsp;|&nbsp;<a href="nrg.html">Non-Regulatory Guidance</a>&nbsp;|&nbsp;<a href="calendar.html">Calendar</a>');

}

/********************************************************
* ADDRESS AND DISCLAIMER 
* Renders the address and disclaimer at bottom of page
********************************************************/
function addressDis() {
document.write('<div id="addressDis" align="center">');
document.write('2010 Consortium for Quality and Consistency in Identification and Recruitment<br>');
document.write(' 231 East Madison Avenue&nbsp;|&nbsp;Gardner, Kansas 66030&nbsp;|&nbsp;Telephone: 913-856-3350&nbsp;|&nbsp;Fax: 913-856-3388');
}