// JavaScript Document
function validate_add_job_offer()
{
	var frm = document.getElementById("frm_add_job_offer");
	if(GenValidation(frm.offer_txt_company," company.","","")=="")
		return false;
	if(GenValidation(frm.offer_txt_plateform," Plateform.","","")=="")
		return false;
	if(GenValidation(frm.offer_txt_exp," experience.","","")=="")
		return false;
	if(GenValidation(frm.offer_txt_qualification," qualification.","","")=="")
		return false;
	if(GenValidation(frm.offer_txt_website," website.","","")=="")
		return false;
	if(GenValidation(frm.offer_txt_contact," contact.","","")=="")
		return false;
	if(GenValidation(frm.offer_txt_title," title.","","")=="")
		return false;
	if(GenValidation(frm.offer_txt_desc," description.","","")=="")
		return false;
	if(GenValidation(frm.offer_txt_email," email.","","")=="")
		return false;
	if(EmailValidation(frm.offer_txt_email)=="")
		return false;
	if(GenValidation(frm.offer_txt_address," address.","","")=="")
		return false;
}
