//Javascript Functions
//BY: Krishna Acharya
// Kathmandu, Nepal
// kapsona@yahoo.com
// www.kris.com.np
// December 2007

function ValidateCaseEvaluatorForm()
	{
		var msg="";
		var form=document.case_form;
		var make=form.make;
		var year=form.purchaseyear;
		var new_or_used=form.condition;
		var purchased_state=form.State_where_purchased;
		var times_been_to_shop=form.since_purchase;
		var days_in_shop=form.in_the_shop;
		var name=form.name;
		var email=form.email;
		var phone=form.phone;
		var othernotes=form.othernotes;
		
		if(make.value=="")
			msg+="Please select the make of your vehicle \n";
			
		if(year.value=="")
			msg+="Please select the purchased year of your vehicle \n";
			
		if(purchased_state.value=="")
			msg+="Please select the state where you purchased your vehicle \n";
					
		if(new_or_used.value=="")
			msg+="Please select the condition of your vehicle \n";
			
		if(IsEmpty(name) )
			msg+="Please enter your name \n";
		else
			{
					if(!IsName(name.value) )
						msg+="Please enter your name in proper format without any special characters \n";
				
			}

		if(!isValidEmail(email.value) )
					msg+="Please enter your email in proper format  \n";

		if(IsEmpty(phone) )
			msg+="Please enter your phone \n";
		else
			{
					if(!IsPhone(phone.value) )
						msg+="Please enter your phone in proper format without any special characters \n";
			}	
		
		if(msg!="")
			{				
			alert("Following errors occurred.\n"+msg);
			return false;
			}
	return true;	
	}
	
function MM_jumpMenu(targ,selObj,restore)
	{ //v3.0
  	eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  	if (restore) selObj.selectedIndex=0;
	}