function doStarVote() {
	artist1 = document.starvote.artist[0].checked;
	artist2 = document.starvote.artist[1].checked;
	
	if (artist1 == false && artist2 == false){
		alert('Please select the artist you would like to vote for.');
		return false;
	}
	 
	artist = 0;
	for (i=0; i<document.starvote.artist.length; i++) {
		if (document.starvote.artist[i].checked == true) {
			artist = i + 1;
			break;
		}
	}
	
	name = document.starvote.name.value;
	email = document.starvote.email.value;
	country = document.starvote.country[document.starvote.country.selectedIndex].value;

	if ( (name == '') || (email == '') ) {
		window.alert("Please fill all required fields...");
	} else {
		url = "dostarvote.php?artist=" + artist + "&name=" + name + "&email=" + email + "&country=" + country;
		window.open(url, 'starvote', 'top=100,left=100,width=300,height=150,location=0,status=0,scrollbar=1');
		document.starvote.name.value = '';
		document.starvote.email.value = '';
		
	}

	return false;
}
	