

function OpenPopUp2(location)
{
  
    if (location=='')
        location="0";
    NoDown(location)
}

function window_onscroll()
{
    if(document.all && document.getElementById) //added for IE4
    {
        if(window.document.getElementById("scrollPict"))
            window.document.getElementById("scrollPict").style.top=document.body.scrollTop+pictTop;
    }
    else if(document.all && !document.getElementById) //added for IE4
    {
        if(document.all['scrollPict'])
            document.all['scrollPict'].style.top=document.body.scrollTop+pictTop;
    }
}

function Select1_onclick() 
{
	var LangPath = LangBox.value;
	LangBox.selectedIndex= 0;
	var tmpLocation = "";
        if (LangPath == 'en')
        {
            tmpLocation = "http://www.pacificpoker.com/mac/en/?lang=en";
        }
        else
        {
            tmpLocation = "http://" + LangPath + ".pacificpoker.com/mac/" + LangPath + "/?lang="+LangPath;
        }
       window.location.href=tmpLocation;
}