

function uploadphoto() {

	alert('Your photograph will now be uploaded, please click OK and wait a moment...');

	if (document.getElementById) {
		document.getElementById('uploadingmsg').style.display='block';
	}

	if (document.body) {
		document.body.style.cursor = 'wait';
	}

	document.forms[1].submit();

}