function submitContactForm(){
	document.forms.send_message.submit();
}

function submitUploadForm(){
	document.forms.document_upload.submit();
}
function requestDelete(filename){
	if(confirm('Are you sure you want to request the deletion of this file?')){
		window.location.href="index.php?action=request_delete&filename="+filename;
	}
}
