// JavaScript Document

function loadwindow(url, x, y){
	newwindow=window.open(url, "", "width="+x+", height="+y+", menubar=0");
	newwindow.focus();
}

function protectmail(name, domainaddress, linktext1, linktext2)
{
	document.write("<a href='mailto:" + name + "@" + domainaddress + "'>" + linktext1 + linktext2 + "</a>");
}


