// JavaScript Document

function disp_confirm(location) {
	var r=confirm("You are about to open the Archive of the Crosstown Parkway EXT. Website\n Please confirm that you want to be redirected to the Archive.");
	if (r==true) {
		window.open(location);
	}
	else {
	  return;
	}
}

//<a onclick="disp_confirm('http://www.WEBSITE.com')">test</a>