// return a link to the given course from the Dean's redbook
function rb_path(crs)
{
	return 'http://www.dean.usma.edu/sebpublic/curriccat/crse_details.cfm?crse_nbr=' + crs;
}

// Pop up a new window on the URL given by loc.
function rb_popup(crs)
{
	window.open(rb_path(crs),
				'',
				'width=800,height=500,scrollbars=yes,resizable=yes,status=no,location=no,menubar=no')
}

// write a link to the given course from the Dean's redbook
function rb_link(crs)
{
	var a = '<a href="#" onclick="rb_popup(\'' + crs + '\')" >' + crs + '</a>';
	document.write(a);
}
