/*
*   Fonctions liées au badger Flicker
*/

function zg_insert_badge(tag) {
    var zg_bg_color = 'FFFFFF';    
    var zgi_url = 'http://www.flickr.com/apps/badge/badge_iframe.gne?zg_bg_color='+zg_bg_color+'&zg_tags='+tag+'&zg_tag_mode=any';
    document.write('<iframe style="background-color:#'+zg_bg_color+'; border-color:#'+zg_bg_color+'; border:none;" width="113" height="151" frameborder="0" scrolling="no" src="'+zgi_url+'" title="Flickr Badge"><\/iframe>');
    if (document.getElementById) document.write('<div id="zg_whatlink"><a href="http://www.flickr.com/badge_new.gne"	style="color:#0066CC;" onclick="zg_toggleWhat(); return false;">what is this?<\/a><\/div>');
}
    
function zg_toggleWhat() {
    document.getElementById('zg_whatdiv').style.display = (document.getElementById('zg_whatdiv').style.display != 'none') ? 'none' : 'block';
    document.getElementById('zg_whatlink').style.display = (document.getElementById('zg_whatdiv').style.display != 'none') ? 'none' : 'block';
    return false;
}
