// JavaScript Document

function hideDiv(elemShort, elemFull)
{
	elS = document.getElementById(elemShort);
	elF = document.getElementById(elemFull);
	if (elS && elF) {
		if (elS.style.display != 'none') {
			elS.style.display = 'none';
			elF.style.display = 'block';
		} else if (elS.style.display != 'block') {
			elF.style.display = 'none';
			elS.style.display = 'block';
		}
	}
}

function mailto_book() {
	email_text = "mailto:jana@personalpragueguide.com,sarka@personalpragueguide.com";
	email_text += "?subject=Book the Tour" +
				  "&body=Dear traveler. Thank you for booking the Personal Prague Guide services.  We will be happy to reply with the detailed email asap (1-3 days). Booking is free.%0A" + 
				  "You will make the booking process easier, faster and more efficient if you let us know:%0A%0A" + 
				  "Your name and surname:%0AEmail Address:%0ADates of your visit (from-to):%0AHotel + address (our meeting point):%0ANumber of people:%0A%0A" +
				  "What tours would you like:%0APrefered date(s) and starting time of the tour:%0APrefered guide:%0AIf this guide is not available Sarka will find another quality guide and inform you asap. Do you agree?%0A%0A" +
				  "Shall we book the transfers from/to the airport for you?%0ADate, time, number of people, flight number:%0A%0A" +
				  "Shall we book any cultural program for you?%0ADate, name of the cultural event, number of the tickets:%0A%0A" +
				  "Your wishes, questions, ideas etc.:";
	document.location.href=email_text;
}

function mailto_paypal() {
	email_text = "mailto:sarka@personalpragueguide.com";
	email_text += "?subject=I would like to pay by Pay Pal. " +
				  "&body=Dear Personal Prague Guide,%0A%0A" + 
				  "I would like to pay ahead via PayPal. As a client I understand that PayPal requires about 4 % from the bussines payments and I agree to pay this extra expense. (I know that cash payment would be cheaper.) %0A%0A" + 
				  "My surname is:%0AMy email address for the PayPal communication:%0A%0A" +
				  "Please send me the withdrawal form from your pay pal account. %0A%0A" +
				  "NOTES:";
	document.location.href=email_text;
}
