﻿function PreloadImage(ImageLocation)
{
	if (document.images)
	{
	  PreloadedImage = new Image(); 
	  PreloadedImage.src = ImageLocation; 
	}
}

