<!--

// document.forms[0].elements['action'].disabled = true;
document.forms[0].elements['action'].value = 'ENTER [5s]';
var nCountDown = 5;
var oCountDown = window.setInterval('CountDown();', 1500);
var nPopIndex = (-1);
function CountDown()
{	if(nCountDown > 0)
	{		document.forms[0].elements['action'].value = 'ENTER [' + nCountDown.toString() + 's' + ((nCountDown==1)?'':'') + ']';
		nCountDown--;
	}	else	{
		window.clearInterval(oCountDown);
		document.forms[0].elements['action'].value = 'ENTER';
		document.forms[0].elements['action'].disabled = false;
	};
};

function handleSubmit(sTitle)
{
	var sUrl	= 'http://toplist.raidrush.to/vote/epic';
	var sUrl2	= 'http://www.alphaload.de/?c=7127';
	var nWidth	= 700;
	var nHeight	= 540;
	var nLeft	= (screen.availWidth - nWidth) / 2;
	var nTop	= (screen.availHeight - nHeight) / 2;
	if(sTitle == 'ENTER')
	{
		var oWin = window.open('http://toplist.raidrush.ws/vote/epic', '_blank', 'toolbar=0,status=0,scrollbars=yes,resizable=1,width=800,height=600,top=' + nTop.toString() + ',left=' + nLeft.toString() + ',height=' + nHeight.toString() + ',width=' + nWidth.toString() + '')
		return(true);
	}
	else
	{
		var oWins = window.open('http://toplist.raidrush.ws/vote/epic','_blank', 'channelmode=no,directories=no,fullscreen=no,location=no,menubar=no,resizable=yes,scrollbars=yes,status=no,toolbar=no,top=' + nTop.toString() + ',left=' + nLeft.toString() + ',height=' + nHeight.toString() + ',width=' + nWidth.toString() + '');
		
		oWins.focus();
		
		return(false);
		
	};
	
};
//-->