// WEITEREMPFEHLEN-POPUP *****************************************************************************************************************************************

function suggest_page(id) {
	web_path = ("http://www.gutshof-usedom.de?id="+id);
		
    pWin = open("popups/weiterempfehlen/index.php?p="+web_path,"Weiterempfehlen","menubar=no,toolbar=no,directories=no,scrollbars=no,resizable=no,status=no,location=no,width=300,height=480");
    pWin.moveTo(screen.width/2-150,screen.height/2-250);
    pWin.path = web_path;
    pWin.focus();
}


// UEBERSICHTSKARTE-POPUP *****************************************************************************************************************************************

function overview_map() {
	pWin = open("popups/uebersichtskarte/index.html","Uebersicht","menubar=no,toolbar=no,directories=no,scrollbars=no,resizable=no,status=no,location=no,width=980,height=420");
    pWin.moveTo(screen.width/2-505,screen.height/2-240);
    pWin.focus();
}

// BUCHUNGSMODUL-POPUP *****************************************************************************************************************************************

function online_booking(url) {
	call_url = "popups/buchung/index.php?url="+url;
	pWin = open(call_url,"Buchung","menubar=no,toolbar=no,directories=no,scrollbars=no,resizable=no,status=no,location=no,width=820,height=650");
    pWin.moveTo(screen.width/2-410,screen.height/2-325);
    pWin.focus();
}

// GENERIERT CODIERTE MAIL MIT SUBJECT UND BODY **************************************************************************************************************

function sendMail(email,subject,body) {
	subject = escape(subject);
	body = escape(body);
	document.location.href= "mailto:"+email+"?subject="+subject+"&body="+body;
}

//*******************************************************************************************************************************************************

