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

function switchCSS(fileName, printDialog)
{
    document.getElementById('screenCSS').href = fileName;
    if(printDialog==true) { self.print(); }
    return false;
}


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