function resetForm(field, submit, msg){

submit.value = msg;
submit.disabled = false;

field.focus()

}

function showSubmit(submit, msg){

submit.value = msg;
submit.disabled = true;

}

function adminSearch(){

company = document.getElementById('search_company').value;

if(company == ''){
	alert("Please select a company from the drop down box!");
	document.getElementById('search_company').focus();
	return false;
	}

document.getElementById('search_comp').value = company;

showSubmit(document.getElementById('search_submit'), ' Searching...');

}

function CheckDelete(location, report){
	
	var msg = 'You are about to delete this report?\n---------------------------------------------------------\n';
	msg += '\nLocation: ' + location + '\nReport: ' + report;
	msg += '\n\n---------------------------------------------------------\n';
	msg += 'OK: Delete File\nCancel: Don\'t Delete File\n ';
	return confirm(msg);
	
	}
