var Tip = [	
		"Don't reply to any unsolicited emails requesting to be removed from their mailing lists. This may get your email address removed from one list, but it will certainly confirm that your email address is active and get your information added to lists being sold to other spammers.",
			"Don't Reply!", 
		"When posting an email address on your website, consider several options to keep spammer's email harvesting programs from finding your email addresses. These can include using 'AT' rather than the '&#64;' character, using a graphic image in place of text, and special files to keep harvesters from searching your website.", 
			"Website Measures", 
		"If you live in the United States, check local laws to see if your state is one of several that have enacted anti-spam laws, such as California and Virginia. It may be possible to report the spammers and have legal action taken against them.",
			"Check Local Laws", 
		"When registering on websites that require an email address, be certain to check their privacy policy. Some sites may sell your information to spamming companies. If there is no privacy policy and your email address is not required for communication purposes, consider providing an alternate email address, rather than one you use often for business or family email.",
			"Check Privacy Policies", 
		"Check to see if your Internet Service Provider has any anti-spam measures in place, such as Brightmail or Spam Assassin. Such programs are used on their email servers to help eliminate spam.",
			"Contact Your ISP", 
		"Some emails appear unsolicited, but are actually something you may have inadvertently requested. When completing email forms for online companies, be sure to read all pre-checked boxes. Leaving those boxes checked can cause you to receive a variety of information on services and products you may not want or need.",
			"Uncheck the Boxes"
	];

var iIndex = ((Math.round (Math.random () * (Tip.length / 2))) - 1) * 2;

if (iIndex < 0) iIndex = 0;

document.write ("<center><h5 class='design'><i>");
document.write (Tip [iIndex+1]);
document.write ("</i></h5></center><p class='design'>");
document.write (Tip [iIndex]);
document.writeln ("</p>");