// JavaScript Document

//accepting terms and condition script

function agreesubmit(el){
checkobj=el
if (document.all||document.getElementById){
for (i=0;i<checkobj.form.length;i++){  //hunt down submit button
var tempobj=checkobj.form.elements[i]
if(tempobj.type.toLowerCase()=="submit")
tempobj.disabled=!checkobj.checked
}
}
}

function defaultagree(el){
if (!document.all&&!document.getElementById){
if (window.checkobj&&checkobj.checked)
return true
else{
alert("Please read/accept terms to submit form")
return false
}
}
}
//end of agree terms and conditions 
//script is for counting the number of characters entered in the textarea
var ns6=document.getElementById&&!document.all

function restrictinput(maxlength,e,placeholder){
if (window.event&&event.srcElement.value.length>=maxlength)
return false
else if (e.target&&e.target==eval(placeholder)&&e.target.value.length>=maxlength){
var pressedkey=/[a-zA-Z0-9\.\,\/]/ //detect alphanumeric keys
if (pressedkey.test(String.fromCharCode(e.which)))
e.stopPropagation()
}
}

function countlimit(maxlength,e,placeholder){
var theform=eval(placeholder)
var lengthleft=maxlength-theform.value.length
var placeholderobj=document.all? document.all[placeholder] : document.getElementById(placeholder)
if (window.event||e.target&&e.target==eval(placeholder)){
if (lengthleft<0)
theform.value=theform.value.substring(0,maxlength)
placeholderobj.innerHTML=lengthleft
}
}


function displaylimit(thename, theid, thelimit){
var theform=theid!=""? document.getElementById(theid) : thename
var limit_text='<b><span id="'+theform.toString()+'">'+thelimit+'</span></b> characters remaining on your input limit'
if (document.all||ns6)
document.write(limit_text)
if (document.all){
eval(theform).onkeypress=function(){ return restrictinput(thelimit,event,theform)}
eval(theform).onkeyup=function(){ countlimit(thelimit,event,theform)}
}
else if (ns6){
document.body.addEventListener('keypress', function(event) { restrictinput(thelimit,event,theform) }, true); 
document.body.addEventListener('keyup', function(event) { countlimit(thelimit,event,theform) }, true); 
}
}
//end of the counting script


//validation script for the manditory fields
function ifcountry_india_usa(obj)
{
	if(obj.options[obj.selectedIndex].text == 'India')
		{
			document.form1.indianstates.disabled = false;
			document.form1.usstates[0].selected = true;
			document.form1.usstates.disabled = true;
			document.form1.otherstate.value = ""; 
			document.form1.otherstate.disabled = true; 
			return true;
	    }
		else if(obj.options[obj.selectedIndex].text == 'USA' )
		{
			document.form1.indianstates[0].selected = true;
			document.form1.indianstates.disabled = true;
			document.form1.usstates.disabled = false;
			document.form1.otherstate.value = ""; 
			document.form1.otherstate.disabled = true; 

			return true;
		}
		else
		{
			document.form1.otherstate.disabled = false; 

			document.form1.usstates[0].selected = true;
			document.form1.usstates.disabled = true;

			document.form1.indianstates[0].selected = true;
			document.form1.indianstates.disabled = true;

			return true;
		}
}

function valid()
{
		if((document.form1.maritalstatus[0].checked==false)&&(document.form1.maritalstatus[1].checked==false)&&(document.form1.maritalstatus[2].checked==false)&&(document.form1.maritalstatus[3].checked==false))
		{
			alert("Please select your marital Status");
			document.form1.maritalstatus[0].focus();
			return false;	
		}	

		if((document.form1.religion.options(document.form1.religion.options.selectedIndex).text)=="Religion")
		{
				alert("Please select Religion");
			document.form1.religion.focus();
			return false;	
		}
		if((document.form1.caste.options(document.form1.caste.options.selectedIndex).text)=="Select")
		{
				alert("Please select subcaste");
			document.form1.caste.focus();
			return false;	
		}
		if((document.form1.manglik[0].checked==false)&&(document.form1.manglik[1].checked==false)&&(document.form1.manglik[2].checked==false)&&(document.form1.manglik[3].checked==false))
		{
			alert("Please select Are you Manglik");
			document.form1.manglik[0].focus();
			return false;	
		}

		if((document.form1.indianstates.disabled==false))
		{
			if((document.form1.indianstates.options(document.form1.indianstates.options.selectedIndex).text)=="Select")
			{
			alert("select the state");
		
			document.form1.indianstates.focus();
			return false;	
			}
		}
		if((document.form1.usstates.disabled==false))
		{
			if((document.form1.usstates.options(document.form1.usstates.options.selectedIndex).text)=="US States")
			{
			alert("select the state");
		
			document.form1.usstates.focus();
			return false;	
			}
		}

		if((document.form1.otherstate.disabled==false))
		{
			if(document.form1.otherstate.value=="")
			{
			alert("Enter the state Name");
			document.form1.otherstate.focus();
			return false;	
			}
		}
		
	if((document.form1.residencystatus[0].checked==false)&&(document.form1.residencystatus[1].checked==false)&&(document.form1.residencystatus[2].checked==false)&&(document.form1.residencystatus[3].checked==false)&&(document.form1.residencystatus[4].checked==false))
	{
		alert("Please select your residency status");
		document.form1.residencystatus[0].focus();
		return false;	
	} 	

return true;
}
