function Enlarge_window(theURL,winName,width,height,features) {
	MyWindow=window.open(theURL,winName,'resizable=yes,scrollbars=yes,width='+width+',height='+height+features);
	MyWindow.resizeTo(width,height);
	setTimeout('MyWindow.focus();',250);
}

function nospam_email(domain, name, display, variables){
	//updated 2/12/2008 so images pass correctly
	if (!display){
		display = name + '@' + domain;
		title = 'Email ' + display;
	} else {
		title = 'Email ' + name + '@' + domain;
	}
	document.write('<a href=\"mail'+'to:' + name + '@' + domain + variables + '\" title="' + title + '">');
	document.write(display + '</a>');
}
