//<!--
function compete1(strUserType)
{     
    if(document.getElementById("lstSport").value==0)
    {
        alert("Please select all combinations");
        document.getElementById("lstSport").focus();
        return false;
    }
    if(document.getElementById("lstStyle").value==0)
    {
        alert("Please select all combinations");
        document.getElementById("lstStyle").focus(); 
        return false;
    }
    if(document.getElementById("lstType").value==0)
    {
        alert("Please select all combinations");
        document.getElementById("lstType").focus(); 
        return false;
    }
    if(document.getElementById("lstAge").value==0)
    {
        alert("Please select all combinations");
        document.getElementById("lstAge").focus(); 
        return false;
    }
    if(document.getElementById("lstGender").value==0)
    {
        alert("Please select all combinations");
        document.getElementById("lstGender").focus(); 
        return false;
    }
    if(document.getElementById("lstSkill").value==0)
    {
        alert("Please select all combinations");
        document.getElementById("lstSkill").focus(); 
        return false;
    }
    if(document.getElementById("lstAthlete").value==0)
    {
        alert("Please select all combinations");
        document.getElementById("lstAthlete").focus(); 
        return false;
    }
    if(strUserType=='spectator')
    {
        alert("You must be logged in as competitor to compete");
        return false;
    }
}
//-->