// JavaScript Document

function sendEnquiry(){
	
	var bad=0;
	if(document.forms['enquiry'].name.value==""){bad=1;}
	if(document.forms['enquiry'].company_name.value==""){bad=1;}
	if(document.forms['enquiry'].telephone_number.value==""){bad=1;}
	if(document.forms['enquiry'].email_address.value==""){bad=1;}
	if(document.forms['enquiry'].enquiry.value==""){bad=1;}
	
	if(bad==1){
		alert("Please complete all fields.");
		return;
	}
	
	document.forms['enquiry'].submit();
	
}

function apply(){
	
	var bad=0;
	var cbad=1;
	
	if(document.forms['apply'].f_name.value==""){bad=1;}
	if(document.forms['apply'].l_name.value==""){bad=1;}
	if(document.forms['apply'].tel.value==""){bad=1;}
	if(document.forms['apply'].email.value==""){bad=1;}

	if(bad==1){
		alert("Please complete all fields.");
		return;
	}

	var file = document.forms['apply'].cv.value;
	bits = file.split(".");
	var ext = bits[bits.length-1].toLowerCase();
	
	if(ext!=""){
	
		if(ext=="doc"){cbad=0;}
		if(ext=="docx"){cbad=0;}
		if(ext=="pdf"){cbad=0;}
		
		if(cbad==1){
			alert("Sorry, you can only attach your CV in Microsoft Word or PDF format.");
			return;		
		}
	}
	
	if(!confirm("Send your application?")){
		return;	
	}
	
	document.forms['apply'].submit();
	
}
