function InfoLink(dir, txt, target) {
// dir: URL
// txt: Hyperlinked text
// target: 1 = _blank

	document.write('<a href="/InternalLink.asp?/')
	document.write(dir)
	if (target == 1) {
		document.write('" target="_blank">')
	}
	else {
		document.write('">')
	}
	document.write(txt)
	document.write('</a>')
}

function InfoLinkExt(pone, ptwo, txt, target) {
// pone, ptwo: p1, p2 querystring params
// txt: Hyperlinked text
// target: 1 = _blank

	document.write('<a href="/ExternalLink.asp?p1=' + pone + '&p2=' + ptwo)
	if (target == 1) {
		document.write('" target="_blank">')
	}
	else {
		document.write('">')
	}
	document.write(txt + '</a>')
}