// JavaScript Document

var vwin=0;
function vote()
{
	if(vwin){
		if(!vwin.closed) vwin.close();
	}
	vwin=window.open("http://www.swissmusicawards.ch/vote/index.php?sid=89884&lang=en","vwin","menubar=no,resizable=no, status=yes,location=no,width=500,height=300,top=200,left=300");
	
	setTimeout("vote_check()", 2000);
}
function vote_check(){
	if(!vwin){
		alert("Please switch off the popup-blocker of your browser!");
	}
}
