// JavaScript Document
	function votecheck(x){		
		if(x=="yes"){
			alert("You have already voted, please return next month to vote again.");
			return false;
		}
	}

function validate_nomination()
{
	var f=document.form1;
	var complete=true;
	if(f.nomination.value=="")
	{
		alert("Please Enter the name of Song.");
		f.nomination.focus();
		complete=false;
		return false;
	}
	else if(f.artist.value=="")
	{
		alert("Please Enter the name of Artist.");
		f.artist.focus();
		complete=false;
		return false;
	}
	if(complete==true)
	{
		f.action="votesongs.php";
		f.submit();
	}
}
		