// JavaScript Document

// Write URL Variable
function writeURL() {
document.write("www.ncfi.usss.gov");	
}

// Jump menu for in-page navigation to anchor points
function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}

// Locations Array
var place = ["A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z","Overseas"];

function foLocation() {   
    document.write("<option selected value='#'>Select Location...</option>");  
    for (var i = 0; i < place.length; i++) {
    document.write("<option value=\"");
    document.write("#" + place[i].toLowerCase());
    document.write("\">");
    document.write(place[i]);
    document.write("</option>");
    }
}

// Calendar Array
var dates = ["February 2010","March 2010","April 2010","May 2010","June 2010", "July 2010", "August 2010"];

function calDates() {   
    document.write("<option selected value='#'>Select Month...</option>");  
    for (var i = 0; i < dates.length; i++) {
    document.write("<option value=\"");
    document.write("#" + dates[i].toLowerCase());
    document.write("\">");
    document.write(dates[i]);
    document.write("</option>");
    }
}
