// CreateImage.js

function CreateImage(ImageFileName)
{
  var img = new Image();
  if ((typeof PathCreate == "undefined") || (PathCreate == null)) PathCreate = "BOUTONS/";
  img.src= PathCreate + ImageFileName;
  return img;
}
