function changePictureUploadState(state) {
	if (state == 1) {
		$('mainmovie').removeClassName('active');
		$('upload-image').show();
		$('foto').hide();
	}

	else if (state == 2) {
		$('upload-image').hide();
		$('mainmovie').addClassName('active');
		$('foto').hide();
	}
}

function setFinalBitmapURL(url, showPhoto) {
	$('upload-image').writeAttribute("src", url);
	if (showPhoto == 0) {
		$('upload-image').hide();
	}
	$('photo-uploaded').value = true;
}
