// this function displays text in a popup window
var anchorname;

function popup(which) {
	anchorname = which;
	var whichfile = "jobs-" + which + ".htm#" + anchorname;
	var properties = "width=700,height=600,scrollbars=yes";
	window.open(whichfile, "popup", properties);
}