
  function showLink(url)
  {
    var promptstr = 'Copy this url to the clipboard and paste it to create a link.';
    promptstr += '  This link gives access to all public pictures in all albums.';   
    window.prompt( promptstr , url);
  }

  function ThumbOver(Caption,FileName)
  {
    //if (Caption == '') && (FileName == '') return;
	
	if (Caption != '') dcc(Caption,FileName);
	
	tmp = "Click on the thumbnail to view the picture";

    if (FileName != '') tmp = FileName;
	if (Caption != '') tmp = Caption;
	
	SetStatusBar(tmp);
  }
  
  function ThumbOut()
  {
    nd();
	SetStatusBar('');
  }
