referemail = "?subject=Go See ThiefWare.com&body=Hello, " +
"You will find this site interesting and enlightening. It features information " +
"about companies that use software to conduct unethical business practices. " +
"To find out more, go to: http://www.thiefware.com/ (ThiefWare.com). " +
"You can also sign up for their informative " +
"newsletter for updates and alerts at this URL: " +
"http://www.thiefware.com/email.news.letter/alerts.updates.shtml"
referemail = referemail.replace(/ /g, "%20")


function Refer() {
	referadd = prompt('Enter your friend\'s email address.\nFor multiple addresses, seperate with commas:','')
	if (referadd != "" && referadd != null) {
		window.location="mailto:" + referadd + referemail
	} else {
		ans = confirm("You didn't enter an e-mail address.\nPlease try again or cancel to quit.")
		if (ans == "true") { Sender(); }
	}
}

