function confirmGo(message, url)
{
	if(confirm(message)) {
		document.location = url;
	}
}

function showPhoto(url)
{
	window.open(url);
}

function uploadContinueEnable(e)
{
	if(e) {
		document.getElementById('btnContinue').value = 'Continue';
	} else {
		document.getElementById('btnContinue').value = 'Waiting for upload...';
	}
	document.getElementById('btnContinue').disabled = !e;
}

function showAttachmentPhotoUpload()
{
	document.getElementById('uploadForm').style.display = 'block';
}

function setClubImageOnIframeParent(imageId)
{
	if(this.parent && this.parent.document.getElementById('clubimage'))
		this.parent.document.getElementById('clubimage').value = imageId;
}
