/** MAIN FUNCTIONS **/

/**
*	Pop up warning when an external link is clicked
*/
function externalClick(){
	var answer = confirm("This link will take you away from the site you are viewing. The New York State Assembly is not responsible for the content of this external website.")
	if (!answer)
	return false;
} 
