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

