function validare(){
if (document.pp.c_fname.value==""){
			alert ("First Name?");
			document.pp.c_fname.focus();
			return false;
}

if (document.pp.c_lname.value==""){
			alert ("Last Name?");
			document.pp.c_lname.focus();
			return false;
}

if (document.pp.c_phone.value==""){
			alert ("Phone?");
			document.pp.c_phone.focus();
			return false;
}


if (document.pp.c_country.value==""){
			alert ("Country?");
			document.pp.c_country.focus();
			return false;
}


if (document.pp.c_state.value==""){
			alert ("State?");
			document.pp.c_state.focus();
			return false;
}


if (document.pp.c_city.value==""){
			alert ("City?");
			document.pp.c_city.focus();
			return false;
}



if (document.pp.c_cname.value==""){
			alert ("Company name?");
			document.pp.c_cname.focus();
			return false;
}


if (document.pp.c_cdescription.value==""){
			alert ("Brief description of company?");
			document.pp.c_cdescription.focus();
			return false;
}



if (document.pp.c_email.value.indexOf("@")==-1||document.pp.c_email.value.indexOf(".")==-1){
			alert ("Email?");
			document.pp.c_email.focus();
			document.pp.c_email.select();
			return false;
}


 return true;

}