/* -------------------------------------------------------------------------------------------------
      JavaScript Functions
      by codeworks webagency
      www.codeworks.cc
                                                                                                    */

function getMail(name,domain,country,text)
{
    document.write('<a class="mail" href="mailto:'+name+'&#x40;'+domain+'&#x2e;'+country+'">'+text+'</a>');
}


function singleFlip(span_id)
{
    display = ( document.getElementById( span_id ).className == 'hide' ) ? 'show' : 'hide';
    document.getElementById( span_id ).className = display;
    return false;
}
