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) {
	$('upload-image').writeAttribute("src", url);
	$('photo-uploaded').value = true;

	//Form.$('photo-uploaded').setValue("photo-uploaded", true);
	
}