
agt=navigator.userAgent.toLowerCase();
ie=(document.all) ? 1:0
	ie4=(agt.indexOf('msie 4')!=-1) ? 1:0
	ie5=(agt.indexOf('msie 5')!=-1) ? 1:0
	ns4=(document.layers && parseInt(navigator.appVersion)>=4) ? 1:0

latest=(document.getElementById) ? 1:0
	opera=(agt.indexOf("opera")!=-1) ? 1:0
	gecko=(agt.indexOf("gecko")!=-1) ? 1:0
   ie55=(agt.indexOf("msie 5.5")!=-1) ? 1:0
   ie6=(agt.indexOf("msie 6")!=-1) ? 1:0

	win=( (agt.indexOf("win")!=-1) || (agt.indexOf("16bit")!=-1) )
	mac=(agt.indexOf("mac")!=-1);
   imgs=(document.images) ? 1:0

//browser vars
ie = ie4 || ie5 || ie6;
ns = (ns4)?1:0
best=(latest)?1:0

function showfilmdesc(_zone){
    document.getElementById(_zone+'zone').style.display = 'none'
    document.getElementById('descriptionzone').style.display = 'block'
}

function showmonths(_el){
    _nowyear = (new Date()).getFullYear()
    for(i=2000;i<=_nowyear;i++){
        _divyear = document.getElementById(''+i)
        if(_divyear){
            _divyear.style.color = '#FDC609'
            document.getElementById('arrow'+i).src = 'images/arrow_gold.png'
            document.getElementById('months'+i).style.display = 'none'
        }
    }
    _el.style.color = '#ffffff'
    document.getElementById('arrow'+_el.id).src = 'images/arrow_gold_down.png'
    document.getElementById('months'+_el.id).style.display = 'block'
}

function window_open(width, height, src)
{
	nTop = (screen.availWidth-width)/2;
	nLeft = (screen.availHeight-height)/2;
	var strOpts = "resizable=yes,menubar=no,status=no,toolbar=no,height="+height+",width="+width;
	if(navigator.appName.indexOf("Netscape")>=0)
		strOpts = "screenX=" + String( nLeft ) + ",screenY=" + String( nTop ) + "," + strOpts;
	else
		strOpts = "left=" + String( nLeft ) + ",top=" + String( nTop ) + "," + strOpts;
	
	var oWnd = window.open(src, '', strOpts);
}

function open_vote_res() { window_open(500, 400, 'vote_results.aspx'); }