function Update_Link(newpic, newlink) 
{
  document.getElementById("gallery").src = "/images/mls/" + newpic;
  document.getElementById("link").href   = "/images/mls/" + newlink;

  return false;
}

function displayQuickTime( sFileName ) {

  var oCONSTANT = { WIDTH: 300, HEIGHT: 220 };
 
  var sHTML = '<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" codebase="http://www.apple.com/qtactivex/qtplugin.cab" width="' + oCONSTANT.WIDTH + '" height="' + oCONSTANT.HEIGHT + '">'
            +   '<param name="autoplay" value="true">'
            +   '<param name="src" value="/tours/' + sFileName + '">'
            +   '<param name="type" value="video/quicktime" width="' + oCONSTANT.WIDTH + '" height="' + oCONSTANT.HEIGHT + '">'
            +   '<embed src="/tours/' + sFileName + '" width="' + oCONSTANT.WIDTH + '" height="' + oCONSTANT.HEIGHT + '" autoplay="true" type="video/quicktime" pluginspage="http://www.apple.com/quicktime/download/">'
            + '</object>';

  document.write( sHTML );
}