<!--
isNetscape=navigator.appName.indexOf('Netscape')>=0;
function new_window()
{
       ww=640; wh=480;
       sw  = screen.width;
       sh  = screen.height;
       wbx = Math.round((sw-ww)/2);
       wby = Math.round((sh-wh)/2)-75;

       if(isNetscape)
          positionCode='screenX='+wbx+',screenY='+wby+',';
       else
          positionCode='left='+wbx+',top='+wby+',';

       window.open('http://www.ua-football.com/live_ua/live.phtml', 'new_wind', 'menubar=0,location=0,status=0,toolbar=0,scrollbars=1,resizable=1,'+positionCode+'height='+wh+',width='+ww+'');
}

function email (login, sc)
{
    var serv = new Array;
    serv[0] = "shaparack.com";
    eml = login +  "@" + serv[sc];
    return eml;
}

function mylo (login, sc)
{
    document.write (email(login, sc));
}

function letter(login, sc, sub)
{
    eml = "mailto:" + email(login, sc);
    if (sub != "")
        eml += "?subject=" + sub;
    window.location.href = eml;
}
//-->