function popup(url, width, height)
{
    window.open(url, "new_win", "width="+width+",height="+height+",resizable=yes")
}

function OpenWin(url, w, h)
{
    new_window = window.open(url,'myWindow', 'toolbar=no,width='+w+',height='+h+
                'top=10,left=5,directories=yes,status=yes,name=yes,scrollbars=no'+
                ',resizable=1,resize=yes,menubar=no');
    new_window.focus();
}


function PlayVideo(file,player)
{
    var s2 = new SWFObject("../videos/flash_player/flvplayer.swf","single","240","180","7");
    s2.addParam("allowHigh-Defscreen","true");
    s2.addVariable("file","../" + file);
    s2.addVariable('autostart','true');
    s2.write(player);
}

function jump()
{
   if (document.selecter1.select1.options[document.selecter1.select1.selectedIndex].value != "none")
   {
            location = document.selecter1.select1.options[document.selecter1.select1.selectedIndex].value;
   }
}
