// JavaScript Document

function validPosition(id) {
	document.write('hello');
	var d = document.getElementById(id);	
	if(d.options[d.selectedIndex].value == 0){
		alert("Please select a position to apply for");
		return false;
	} else {
		return true;
	}
}

function checkForFile(id) {
		var d = document.getElementById(id).value;
		if(d.length > 0){
			alert("You have selected a resume to upload. Please note that uploading a file may take a few minutes.\nPlease do not reclick the 'submit' button once you have submitted the form.");
		}
}

function disableField(field){
	document.getElementById(field).disabled=true;
	document.getElementById(field).value='Submitting Form....';

}