/* this file was copied from 
	http://data2.itc.nps.gov/stylesheets/nps_parks.js	it is included in PageLayout/PageStart.cfm
	
	Alla Terentieva
	alla.terentieva@volpe.dot.gov*/
//open activities list
function openList(URL){
List=window.open(URL,"List","width=160,height=350, scrollbars=yes, left=10, x=10, top=10, y=10")
}

//open river incident map
function openMap(URL){
List=window.open(URL,"Map","width=400,height=550, scrollbars=yes, left=10, x=10, top=10, y=10")
}

//open index
function openIndex(URL){
List=window.open(URL,"Index","width=410,height=450, scrollbars=yes, left=10, x=10, top=10, y=10")
}

// target the window that opened the popup
//target opener
function mainGotoNF(URL){
opener.location.href = URL;
window.close();
}