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 InfoLinkCls(dir, txt, cls) {
// dir: URL
// txt: Hyperlinked text
// cls: anchor class

	document.write('<a class=')
	document.write(cls)
	document.write(' href="/InternalLink.asp?/')
	document.write(dir)
	document.write('">')
	document.write(txt)
	document.write('</a>')
}