<!-- Pop-up Window(s)

// Civil War Resources Guide
function wPop(sID) {
	var sURL = '/archives/resources/civilwar/resources.asp?id=' + sID;
	var h = (screen.width-300)/2;
	var w = (screen.height)/1.7;
	var features = 'height=' + h + ',';
	features += 'width=' + w + ',';
	features += 'resizable';
	win = window.open(sURL,'doc',features);
	win.window.focus();
}

//-->
