function LoadGallery(pictureName,imageFile)

{

  if (document.all)

  {

    document.getElementById(pictureName).style.filter="blendTrans(duration=1)";

    document.getElementById(pictureName).filters.blendTrans.Apply();

  }

  document.getElementById(pictureName).src = imageFile;

  if (document.all)

  {

    document.getElementById(pictureName).filters.blendTrans.Play();

  }

  document.getElementById(titleCaption).innerHTML=captionText;

}





function popup(url)

		{

			window.open(""+url+"", "popUpWin", "toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=auto, resizable=no, copyhistory=yes, width=334, height=44 ,left=220, title=no, top=10");

		}