Web edits
[beagleboard.org.git] / static / flickr.js
blob309dcd949e397764b3b97bbfb459552d53a24742
1 zg_insert_badge = function()
2  {
3   var zg_bg_color = 'FFFFFF';
4   var zgi_url = 'http://www.flickr.com/apps/badge/badge_iframe.gne?zg_bg_color='
5    + zg_bg_color
6    + '&zg_context=in%2Fpool-beagleboard%2F&zg_group_id=705532%40N22';
7   document.write
8    (
9     '<iframe '
10     + 'style="background-color:#' + zg_bg_color + ";"
11     + ' border-color:#' + zg_bg_color + ';'
12     + ' border:none;" width="113" height="151" frameborder="0" scrolling="no" src="'
13     + zgi_url
14     + '" title="Flickr Badge">'
15     + '</iframe>'
16    );
17   if (document.getElementById)
18    {
19     document.write
20      (
21       '<div id="zg_whatlink">'
22       + '<a href="http://www.flickr.com/badge.gne"'
23       + ' style="color:#FF9900;"'
24       + ' onclick="zg_toggleWhat(); return false;">'
25       + 'What is this?'
26       + '</a></div>'
27      );
28     }
29    zg_toggleWhat = function()
30     {
31      document.getElementById('zg_whatdiv').style.display = 
32       (document.getElementById('zg_whatdiv').style.display != 'none') ? 'none' : 'block';
33      document.getElementById('zg_whatlink').style.display =
34       (document.getElementById('zg_whatdiv').style.display != 'none') ? 'none' : 'block';
35      return false;
36     }
37  }