function LoadGallery(pictureName,imageFile,titleCaption,captionText){  try  {   var oImg =  window.document.all[pictureName] ;     if (oImg.src != null)    {       oImg.src = imageFile ;    }  }  catch(e)  {    // error here  }}
