function checkjoin1()
{
var payment_mode=document.getElementById("payment_mode");
var state=document.getElementById("state");
var country=document.getElementById("country");
var name=document.getElementById("name");
var email=document.getElementById("email");


var isValid=true;
//--------------------------------------


if (payment_mode.value=="select")
{
alert("Please Select Payment Mode!");
payment_mode.focus();
isValid=false;
return false;
}



if (country.value=="select")
{
alert("Please Select Your Country!");
country.focus();
isValid=false;
return false;
}



if (state.value.length < 3)
{
alert("Please Enter Your State!");
state.focus();
isValid=false;
return false;
}




if (name.value < 3)
{
alert("Please Enter Your Name!");
name.focus();
isValid=false;
return false;
}





if (email.value.length < 8)
{
alert("Please Enter Your Email!");
email.focus();
isValid=false;
return false;
}




//----------------------------------


if(isvalid==true)
{
return true;
}
{
return false;
}


}
