//Copyright Evrim Icoz - unauthorized usage is prohibited, contact Evrim if 
//you want to use it

window.onLoad=preLoad();


globalImage = "";

function imageOff(){
	globalImage=document.images.SLIDESIMG.src;
	document.images.SLIDESIMG.src = "blank.jpg";
}

function imageOn(){
	document.images.SLIDESIMG.src = globalImage;


}


function preLoad(){
	if (document.images) {
 
		pictures = new Image();
		pictures.src = "blank.jpg";
	}

}

 

function MakeArray(n) {
	this.length = n
	for (var i = 1; i<=n; i++) {
		this[i] = new Image()
	}
	return(this);
}
