// Gallery script for Artistsgallery.net
function LoadGallery(pictureName,imageFile,titleCaption,captionText)
{
  document.getElementById(pictureName).src = imageFile;
  document.getElementById(titleCaption).innerHTML=captionText;
}


function PopupPic(sPicURL) {
window.open( "popup.html?"+sPicURL, "bigpicturewindow",  
"resizable=1,scrollbars=no, height=402,width=300");
   }