// JavaScript Document

//accepting terms and condition script
var checkobj

var caste=new Array();
caste["Hindu"] = ["6000 Niyogi","96K Kokanastha","Adi Dravida","Agarwal","Anavil Brahmin","Arora","Arya Vysya","Aryasamaj","Audichya Brahmin", "Arunthathiyar","Bahi","Bengali","Bengali Brahmin","Bhandari","Billava","Brahmin","Brahmin Bhumihar","Brahmin Goswami","Brahmin Kanada Madhva","Brahmin Kanyakubja","Brahmin Niyogi Nandavariki","Brahmin Saryuparin","Brahmin Tyagi","Bunt","Chaurasia","Chettiar","Coorgi","Davadnya Brahmin","Devandrakula Vellalar","Dawoodi Bhora","Deshastha Brahmin","Devanga","Dhaneshawat Vaish","Dhiman Brahmin","Digambar","Dalit","Ezhava","Ezhuthachan","Garhwali Brahmins","Garhwali Rajput","Gomantak Maratha","Goswami","Gounder","Gour Brahmin","Gowd Saraswat Brahmin","Gowda","Gujarati","Gupta","Gurjar","Havyaka Brahmin","Iyengar","Iyer","Iyer Brahmin","Jaiswal","Jat","Kalar","Kalinga Vysya","Kamboj","Kamma","Kannada Mogaveera","Karhade Brahmin","Karuneekar","Kashmiri Pandit (Brahmin)","Kashyap","Kayastha","Khatri","Kokanastha Brahmin","Konguvellalagounder","Kori","Koshti","Kshatriya","Kumaoni Brahmins","Kumaoni Rajput","Kumawat","Kumbara","Kunbi","Kurmi","Kuruba","Leva Patil","Lingayat","Lohana","Maithil Brahmin","Malayalee Namboodiri","Malayalee Variar","Mali","Maharashtrian","Maharashtrian Brahmin","Maheshwari","Maratha","Maruthuvar","Marvar","Marwari","Maurya","Meenavar","Menon","Mudaliar","Mukkulathor","Muthraiyar","Nadar","Nagar Brahmin","Naidu","Nair","Nair Vaniya","Nambiar","Nepali","OBC (Barber-Naayee)","Padmashali","Patel Desai","Patel Kadva","Patel Leva","Perika","Pillai","Prajapati","Punjabi","Punjabi Brahmin","Rajput","Reddy","Saraswat Brahmins","Saiva Tamil Vellalar","Sahu","Scheduled Caste","Sepahia","Setti Balija","Sindhi","Somvanshi","Sonar","Sowrashtra","Sozhiya Vellalar","Sutar","Swarnakar","Tamil Yadava","Teli","Telugu","Telugu Brahmin","Thevar","Thiyya","Udayar","Vannar","Vaidiki Brahmin","Vaishnav","Vaishnav Bhatia","Vaishnav Vania","Varshney","Vanniar","Veerashaiva","Velethadathu Nair","Vellalar","Vellama","Vishwakarma","Viswabrahmin","Vokaliga","Vysya","Yadav","others"];
caste["Muslim"] = ["Bengali","Dawoodi Bohra","Ehle-Hadith","Memon","Rajput","Shia","Shia Imami Ismaili","Sunni"];
caste["Christian"] = ["Christian","Arya","devar","dalit","mudaliar","muthuraja","pillai","naidu","nadar","dalit","vanniar","devendrakulavellalar","reddy","chettiar","nair","konguvellalagounder","yadav","vishwakarma","Adi Dravida","Born Again","Catholic","CMS","CSI","Evangelical","Jacobite","Marthoma","Nadar","Protestant","Syrian","RC"];
caste["Jain"] = ["Digambar","Shewetamber","Vania"];
caste["Sikh"] = ["Clean Shaven","Gursikh","Jat","Kamboj","Kesadhari","Khatri","Ramgharia"];

	function get_caste(obj,show_default){

		var sel_caste = '';

		var sel_religion	= obj.options[obj.selectedIndex].text;
		var caste_obj		= obj.form.elements["caste"];
		//CLEAN CASTE SELECT BOX
		while ( caste_obj.options.length ) caste_obj.options[0] = null;

		//ADD FIRST SELECT OPTION
		


		//ADD CASTE OPTIONS FOR SELECTED RELIGION
		//if(obj.selectedIndex>0){
			for(j=1;j<caste[sel_religion].length;j++){
				//NOT TO INCLUDE OPTIONS HAVING NULL VALUES
				if(caste[sel_religion][j]!=""){
					var caste_val = caste[sel_religion][j]=="Doesn't Matter"?"":caste[sel_religion][j];
					var def_sel   = (sel_caste == caste_val) ? true : false;
                    caste_obj.options[j+1] = new Option(caste[sel_religion][j], caste_val, true, def_sel);

				}
			}
		//}
return caste_obj;
	}

	
function caste_disable(obj){
	if(obj.options[obj.selectedIndex].text != 'Hindu' &&
		obj.options[obj.selectedIndex].text != 'Muslim' &&
		obj.options[obj.selectedIndex].text != 'Christian' &&
		obj.options[obj.selectedIndex].text != 'Jain' &&
		obj.options[obj.selectedIndex].text != 'Sikh'){
		document.form1.caste.disabled = true;
	}
	else {
		document.form1.caste.disabled = false;
		return get_caste(obj.form.religion, 0);
	}
}

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)=="")
		{
				alert("Please select caste");
			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;
}
