//Pantanassa Javascripts

function playPantanassaMovie() {
	document.getElementById('pantanassa_movie').innerHTML = '<object classid="clsid:02bf25d5-8c17-4b23-bc80-d3488abddc6b" width="427" height="256" codebase="http://www.apple.com/qtactivex/qtplugin.cab#version=6,0,2,0"><param name="src" value="/images/pantanassamonastery_web.mp4" /><embed type="video/quicktime" width="427" height="256" src="/images/pantanassamonastery_web.mp4"></embed></object>';
}

function checkDonationForm(dForm) {
	submitOK = true;
	message = "";
	if(dForm.firstname.value == "") {
		message += "First name needs an entry!!!\n";
		submitOK = false;
		}
	if(dForm.surname.value == "") {
		message += "Surname needs an entry!!!\n";
		submitOK = false;
		}
	apos=dForm.email.value.indexOf("@");
	dotpos=dForm.email.value.lastIndexOf(".");
	if (apos<1||dotpos-apos<2) {
		message += "Email not in a suitable format\n";
		submitOK = false;
		}
	if(dForm.single_donation_amount.value == "") {
		message += "Amount needs an entry!!!\n";
		submitOK = false;
		}
	if(submitOK) {
		if(dForm.period.value != "once") {
			dForm.action="https://www.pantanassamonastery.org/pages/payment_periodic.php";
			//alert("For periodic payments please contact the Monastery. (An automated system is currently under construction.)");
			}
		else {
			dForm.action="/pages/donation.php";
			}
		dForm.submit();
		}
	else {
		alert(message);
		}
}