// JavaScript Document
// Anti-Spam Email - instructions in 2nd script
function ase(userID,domain,ltext,subject,enclose) {
	var link = "<a href='mailto:" + userID + "@" + domain
	link += subject != "" ? "?subject=" + subject : ""
	link += "'>"
	link += ltext != "" ? ltext : userID + "@" + domain
	link += "</a>"
	link = (enclose != 0) ? "&lt;" + link + "&gt;" : link
	document.write(link)
}

function newWindow(htmlfile) {
htmlWindow = window.open(htmlfile, 'newWin', 'width=550,height=600,toolbar=no,scrollbars=no')
htmlWindow.focus()
}