
// frame buster

if (self != top) {top.location = self.location.href}

// spam proof email

function mailto (domain, user,linkText) {
	var email = user + '@' + domain;
	if (!linkText)
		linkText = email;
	return ('<a href=\"mailto:' + email + '\">' + linkText + '</a>');
	}


// referer web bug

function webbug () {
	// document.write ("<img src=\"http://referers.userland.com/staticSiteStats/count.gif?group=radio1&usernum=1049&referer=" + escape (document.referrer) + "\" height=\"1\" width=\"1\" />");
	}