// JavaScript Document
// Yeah all my JavaScript functions go in here
// This is javascript that Ryan likes to use
// Designed by Ryan
// For Ryan


//FUNCTIONS!!!

function newImage(arg) {
	if (document.images) {
		rslt = new Image();
		rslt.src = arg;
		return rslt;
	}
}