/*
A Transparent Ploy
FairSky Pages Component
-----------------------
Copyright 2004 Joshua Paine
Created by Joshua Paine of FairSky Networks <http://fairsky.us/>
Contact at <http://fairsky.us/contact>
Updated 2004-06-27

The latest version should be available at
<http://demo.fairsky.us/javascript/nosave.html>

You may copy, reuse, or produce derivative works of this code
only under the terms of the Linky License v0.1 or later.
The Linky License can be found at <http://fairsky.us/linky>.
The main points of the license are:
	1) Do not alter or remove this notice.
	2) Notify me of your usage through one of the means listed
	   at <http://fairsky.us/contact>.
*/

function nosave()
{
	this.style.width = this.width+"px";
	this.style.height = this.height+"px";
	this.style.backgroundImage = 'url('+this.src+')';
	this.src = 'transparent.gif';
}

document.register('img','NoSave',nosave,'load',false);
