Consultancy

With over 20 years experience in the IT world Clear Advantage can help your business find their way in this ever changing technical world.

We specialise in public sector work, and have assisted local authorities, schools, and colleges in creating and implementing IT strategies.

We recognise that organisations and businesses do not always know if they need to change, and so we are always ready to talk.

Contact us now.

 

  Previous Articles

View Selected Article

 

This is for free

Each month we offer a little online consultancy for free.

 Stop Getting Spam 

Unless your ISPs start taking drastic action, there is not much we can do to stop the volume of SPAM moving around the planet. There are a couple of things you can do to lesson your load.

Use a filter program.

Mailwasher is a free to use program, available at www.mailwasher.net

Mailwasher will run at your ISP, can automatically detect blacklisted emails and allow you to delete them BEFORE they are downloaded to your PC, saving you precious download time and reducing the risk of virus infection.

Hide your Email address

You get lots of junk emails because your email is easy to find on the net. Programs are running all the time to look for email addresses on web sites. They are called 'bots'. Because they are robots we can have a go at fooling them. On your web site is something like: email us at Fred@Bloggs.com. In the html behind your page there is code:

<a href="mailto:Fred@Bloggs.com">Fred@Bloggs.com</a>

The bot is looking for the @ sign, and any href. We can use Javascript to fool the bot. Replace the line above with:

<script language="Javascript">
<!- Begin
user = "Fred";
site = "Bloggs.com";
document.write('<a href=\"mailto:' + user + '@' +site + '\">');
document.write(user + '@' + site + '</a>');
//End ->
</script>

The bot will have a hard time working out the email address from this.
Many thanks to Bob Swart for this useful tip.