function OpenTopScore(gameName,topCount,difficulty,lang)
{

    page  = "execscript.php?page=topscore&gameName="+gameName;
    page += "&topCount="+topCount;
    page += "&difficulty="+difficulty;
    page += "&lang="+lang;
    my_win = window.open(page,"topscore","height=490,width=510,scrollbars=yes,status=no,toolbar=no,menubar=no,location=no,resizable=yes");
    my_win.focus();
        
}


function OpenTopScoreBasic(gameName,topCount,difficulty,scoreType,lang,ico)
{

    page  = "execscript.php?page=topscorebasic&gameName="+gameName;
    page += "&topCount="+topCount;
    page += "&difficulty="+difficulty;
    page += "&scoreType="+scoreType;
    page += "&lang="+lang;
    page += "&ico="+ico;
    my_win = window.open(page,"topscore","height=490,width=510,scrollbars=yes,status=no,toolbar=no,menubar=no,location=no,resizable=yes");
    my_win.focus();

}