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

function changeImages(name,path) {
  if (document.images) {
    document.getElementById(name).src=path;	
  }
}


