// JavaScript Document

function uploading(){
	// we need to submit the file but at the same time we want a cursor to appear
	document.getElementById('upload').style.display = "none";
	document.getElementById('upload2').innerHTML = "Please wait... <br /><img src='/img/loading.gif' alt='Loading' />";
	document.getElementById('form1').submit();
}
