function preload_image(rel_path, new_name){
    np = new Image();
    np.name=new_name;
    np.src = rel_path;
}

function change_pic(path,target_image){
   //alert(path);
   //alert(target_image);
  // alert(document[target_image].name);
    document[target_image].src=path;
}